Whamcloud - gitweb
LU-10808 lod: remove DoM component if DoM is disabled
[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 LU-10680 ..
16 ALWAYS_EXCEPT="  407     253     312     160f   160g    $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 DEF_STRIPE_COUNT=-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 distro version
73 #
74 # Returns a version string that should only be used in comparing
75 # strings returned by version_code()
76 sles_version_code()
77 {
78         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
79
80         # All SuSE Linux versions have one decimal. version_code expects two
81         local sles_version=$version.0
82         version_code $sles_version
83 }
84
85 # Check if we are running on Ubuntu or SLES so we can make decisions on
86 # what tests to run
87 if [ -r /etc/SuSE-release ]; then
88         sles_version=$(sles_version_code)
89         [ $sles_version -lt $(version_code 11.4.0) ] &&
90                 # bug number for skipped test: LU-4341
91                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
92         [ $sles_version -lt $(version_code 12.0.0) ] &&
93                 # bug number for skipped test: LU-3703
94                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
95 elif [ -r /etc/os-release ]; then
96         if grep -qi ubuntu /etc/os-release; then
97                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
98                                                 -e 's/^VERSION=//p' \
99                                                 /etc/os-release |
100                                                 awk '{ print $1 }'))
101
102                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
103                         # bug number for skipped test:
104                         #                LU-10334 LU-10335 LU-10335 LU-10335
105                         ALWAYS_EXCEPT+=" 103a     130a     130b     130c"
106                         #                LU-10335 LU-10335 LU-10365 LU-10366
107                         ALWAYS_EXCEPT+=" 130d     130e     400a     410"
108                 fi
109         fi
110 fi
111
112 FAIL_ON_ERROR=false
113
114 cleanup() {
115         echo -n "cln.."
116         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
117         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
118 }
119 setup() {
120         echo -n "mnt.."
121         load_modules
122         setupall || exit 10
123         echo "done"
124 }
125
126 check_swap_layouts_support()
127 {
128         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
129                 skip "Does not support layout lock."
130 }
131
132 check_and_setup_lustre
133 DIR=${DIR:-$MOUNT}
134 assert_DIR
135
136 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
137
138 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
139 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
140 rm -rf $DIR/[Rdfs][0-9]*
141
142 # $RUNAS_ID may get set incorrectly somewhere else
143 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
144
145 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
146
147 build_test_filter
148
149 if [ "${ONLY}" = "MOUNT" ] ; then
150         echo "Lustre is up, please go on"
151         exit
152 fi
153
154 echo "preparing for tests involving mounts"
155 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
156 touch $EXT2_DEV
157 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
158 echo # add a newline after mke2fs.
159
160 umask 077
161
162 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
163 lctl set_param debug=-1 2> /dev/null || true
164 test_0a() {
165         touch $DIR/$tfile
166         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
167         rm $DIR/$tfile
168         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
169 }
170 run_test 0a "touch; rm ====================="
171
172 test_0b() {
173         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
174         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
175 }
176 run_test 0b "chmod 0755 $DIR ============================="
177
178 test_0c() {
179         $LCTL get_param mdc.*.import | grep "state: FULL" ||
180                 error "import not FULL"
181         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
182                 error "bad target"
183 }
184 run_test 0c "check import proc"
185
186 test_0d() { # LU-3397
187         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
188                 skip "proc exports not supported before 2.10.57"
189
190         local mgs_exp="mgs.MGS.exports"
191         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
192         local exp_client_nid
193         local exp_client_version
194         local exp_val
195         local imp_val
196         local temp_imp=$DIR/$tfile.import
197         local temp_exp=$DIR/$tfile.export
198
199         # save mgc import file to $temp_imp
200         $LCTL get_param mgc.*.import | tee $temp_imp
201         # Check if client uuid is found in MGS export
202         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
203                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
204                         $client_uuid ] &&
205                         break;
206         done
207         # save mgs export file to $temp_exp
208         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
209
210         # Compare the value of field "connect_flags"
211         imp_val=$(grep "connect_flags" $temp_imp)
212         exp_val=$(grep "connect_flags" $temp_exp)
213         [ "$exp_val" == "$imp_val" ] ||
214                 error "export flags '$exp_val' != import flags '$imp_val'"
215
216         # Compare the value of client version
217         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
218         exp_val=$(version_code $exp_client_version)
219         imp_val=$(lustre_version_code client)
220         [ "$exp_val" == "$imp_val" ] ||
221                 error "export client version '$exp_val' != '$imp_val'"
222 }
223 run_test 0d "check export proc ============================="
224
225 test_1() {
226         test_mkdir $DIR/$tdir
227         test_mkdir $DIR/$tdir/d2
228         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
229         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
230         rmdir $DIR/$tdir/d2
231         rmdir $DIR/$tdir
232         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
233 }
234 run_test 1 "mkdir; remkdir; rmdir"
235
236 test_2() {
237         test_mkdir $DIR/$tdir
238         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
239         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
240         rm -r $DIR/$tdir
241         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
242 }
243 run_test 2 "mkdir; touch; rmdir; check file"
244
245 test_3() {
246         test_mkdir $DIR/$tdir
247         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
248         touch $DIR/$tdir/$tfile
249         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
250         rm -r $DIR/$tdir
251         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
252 }
253 run_test 3 "mkdir; touch; rmdir; check dir"
254
255 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
256 test_4() {
257         test_mkdir -i 1 $DIR/$tdir
258
259         touch $DIR/$tdir/$tfile ||
260                 error "Create file under remote directory failed"
261
262         rmdir $DIR/$tdir &&
263                 error "Expect error removing in-use dir $DIR/$tdir"
264
265         test -d $DIR/$tdir || error "Remote directory disappeared"
266
267         rm -rf $DIR/$tdir || error "remove remote dir error"
268 }
269 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
270
271 test_5() {
272         test_mkdir $DIR/$tdir
273         test_mkdir $DIR/$tdir/d2
274         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
275         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
276         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
277 }
278 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
279
280 test_6a() {
281         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
282         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
283         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
284                 error "$tfile does not have perm 0666 or UID $UID"
285         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
286         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
287                 error "$tfile should be 0666 and owned by UID $UID"
288 }
289 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
290
291 test_6c() {
292         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
293
294         touch $DIR/$tfile
295         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
296         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
297                 error "$tfile should be owned by UID $RUNAS_ID"
298         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
299         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
300                 error "$tfile should be owned by UID $RUNAS_ID"
301 }
302 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
303
304 test_6e() {
305         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
306
307         touch $DIR/$tfile
308         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
309         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
310                 error "$tfile should be owned by GID $UID"
311         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
312         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
313                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
314 }
315 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
316
317 test_6g() {
318         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
319
320         test_mkdir $DIR/$tdir
321         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
322         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
323         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
324         test_mkdir $DIR/$tdir/d/subdir
325         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
326                 error "$tdir/d/subdir should be GID $RUNAS_GID"
327         if [[ $MDSCOUNT -gt 1 ]]; then
328                 # check remote dir sgid inherite
329                 $LFS mkdir -i 0 $DIR/$tdir.local ||
330                         error "mkdir $tdir.local failed"
331                 chmod g+s $DIR/$tdir.local ||
332                         error "chmod $tdir.local failed"
333                 chgrp $RUNAS_GID $DIR/$tdir.local ||
334                         error "chgrp $tdir.local failed"
335                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
336                         error "mkdir $tdir.remote failed"
337                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
338                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
339                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
340                         error "$tdir.remote should be mode 02755"
341         fi
342 }
343 run_test 6g "verify new dir in sgid dir inherits group"
344
345 test_6h() { # bug 7331
346         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
347
348         touch $DIR/$tfile || error "touch failed"
349         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
350         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
351                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
352         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
353                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
354 }
355 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
356
357 test_7a() {
358         test_mkdir $DIR/$tdir
359         $MCREATE $DIR/$tdir/$tfile
360         chmod 0666 $DIR/$tdir/$tfile
361         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
362                 error "$tdir/$tfile should be mode 0666"
363 }
364 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
365
366 test_7b() {
367         if [ ! -d $DIR/$tdir ]; then
368                 test_mkdir $DIR/$tdir
369         fi
370         $MCREATE $DIR/$tdir/$tfile
371         echo -n foo > $DIR/$tdir/$tfile
372         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
373         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
374 }
375 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
376
377 test_8() {
378         test_mkdir $DIR/$tdir
379         touch $DIR/$tdir/$tfile
380         chmod 0666 $DIR/$tdir/$tfile
381         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
382                 error "$tfile mode not 0666"
383 }
384 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
385
386 test_9() {
387         test_mkdir $DIR/$tdir
388         test_mkdir $DIR/$tdir/d2
389         test_mkdir $DIR/$tdir/d2/d3
390         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
391 }
392 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
393
394 test_10() {
395         test_mkdir $DIR/$tdir
396         test_mkdir $DIR/$tdir/d2
397         touch $DIR/$tdir/d2/$tfile
398         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
399                 error "$tdir/d2/$tfile not a file"
400 }
401 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
402
403 test_11() {
404         test_mkdir $DIR/$tdir
405         test_mkdir $DIR/$tdir/d2
406         chmod 0666 $DIR/$tdir/d2
407         chmod 0705 $DIR/$tdir/d2
408         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
409                 error "$tdir/d2 mode not 0705"
410 }
411 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
412
413 test_12() {
414         test_mkdir $DIR/$tdir
415         touch $DIR/$tdir/$tfile
416         chmod 0666 $DIR/$tdir/$tfile
417         chmod 0654 $DIR/$tdir/$tfile
418         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
419                 error "$tdir/d2 mode not 0654"
420 }
421 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
422
423 test_13() {
424         test_mkdir $DIR/$tdir
425         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
426         >  $DIR/$tdir/$tfile
427         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
428                 error "$tdir/$tfile size not 0 after truncate"
429 }
430 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
431
432 test_14() {
433         test_mkdir $DIR/$tdir
434         touch $DIR/$tdir/$tfile
435         rm $DIR/$tdir/$tfile
436         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
437 }
438 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
439
440 test_15() {
441         test_mkdir $DIR/$tdir
442         touch $DIR/$tdir/$tfile
443         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
444         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
445                 error "$tdir/${tfile_2} not a file after rename"
446         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
447 }
448 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
449
450 test_16() {
451         test_mkdir $DIR/$tdir
452         touch $DIR/$tdir/$tfile
453         rm -rf $DIR/$tdir/$tfile
454         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
455 }
456 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
457
458 test_17a() {
459         test_mkdir $DIR/$tdir
460         touch $DIR/$tdir/$tfile
461         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
462         ls -l $DIR/$tdir
463         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
464                 error "$tdir/l-exist not a symlink"
465         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
466                 error "$tdir/l-exist not referencing a file"
467         rm -f $DIR/$tdir/l-exist
468         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
469 }
470 run_test 17a "symlinks: create, remove (real)"
471
472 test_17b() {
473         test_mkdir $DIR/$tdir
474         ln -s no-such-file $DIR/$tdir/l-dangle
475         ls -l $DIR/$tdir
476         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
477                 error "$tdir/l-dangle not referencing no-such-file"
478         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
479                 error "$tdir/l-dangle not referencing non-existent file"
480         rm -f $DIR/$tdir/l-dangle
481         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
482 }
483 run_test 17b "symlinks: create, remove (dangling)"
484
485 test_17c() { # bug 3440 - don't save failed open RPC for replay
486         test_mkdir $DIR/$tdir
487         ln -s foo $DIR/$tdir/$tfile
488         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
489 }
490 run_test 17c "symlinks: open dangling (should return error)"
491
492 test_17d() {
493         test_mkdir $DIR/$tdir
494         ln -s foo $DIR/$tdir/$tfile
495         touch $DIR/$tdir/$tfile || error "creating to new symlink"
496 }
497 run_test 17d "symlinks: create dangling"
498
499 test_17e() {
500         test_mkdir $DIR/$tdir
501         local foo=$DIR/$tdir/$tfile
502         ln -s $foo $foo || error "create symlink failed"
503         ls -l $foo || error "ls -l failed"
504         ls $foo && error "ls not failed" || true
505 }
506 run_test 17e "symlinks: create recursive symlink (should return error)"
507
508 test_17f() {
509         test_mkdir $DIR/$tdir
510         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
511         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
512         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
513         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
514         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
515         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
516         ls -l  $DIR/$tdir
517 }
518 run_test 17f "symlinks: long and very long symlink name"
519
520 # str_repeat(S, N) generate a string that is string S repeated N times
521 str_repeat() {
522         local s=$1
523         local n=$2
524         local ret=''
525         while [ $((n -= 1)) -ge 0 ]; do
526                 ret=$ret$s
527         done
528         echo $ret
529 }
530
531 # Long symlinks and LU-2241
532 test_17g() {
533         test_mkdir $DIR/$tdir
534         local TESTS="59 60 61 4094 4095"
535
536         # Fix for inode size boundary in 2.1.4
537         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
538                 TESTS="4094 4095"
539
540         # Patch not applied to 2.2 or 2.3 branches
541         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
542         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
543                 TESTS="4094 4095"
544
545         # skip long symlink name for rhel6.5.
546         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
547         grep -q '6.5' /etc/redhat-release &>/dev/null &&
548                 TESTS="59 60 61 4062 4063"
549
550         for i in $TESTS; do
551                 local SYMNAME=$(str_repeat 'x' $i)
552                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
553                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
554         done
555 }
556 run_test 17g "symlinks: really long symlink name and inode boundaries"
557
558 test_17h() { #bug 17378
559         [ $PARALLEL == "yes" ] && skip "skip parallel run"
560         remote_mds_nodsh && skip "remote MDS with nodsh"
561
562         local mdt_idx
563
564         test_mkdir $DIR/$tdir
565         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
566         $LFS setstripe -c -1 $DIR/$tdir
567         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
568         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
569         touch $DIR/$tdir/$tfile || true
570 }
571 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
572
573 test_17i() { #bug 20018
574         [ $PARALLEL == "yes" ] && skip "skip parallel run"
575         remote_mds_nodsh && skip "remote MDS with nodsh"
576
577         local foo=$DIR/$tdir/$tfile
578         local mdt_idx
579
580         test_mkdir -c1 $DIR/$tdir
581         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
582         ln -s $foo $foo || error "create symlink failed"
583 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
584         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
585         ls -l $foo && error "error not detected"
586         return 0
587 }
588 run_test 17i "don't panic on short symlink (should return error)"
589
590 test_17k() { #bug 22301
591         [ $PARALLEL == "yes" ] && skip "skip parallel run"
592         [[ -z "$(which rsync 2>/dev/null)" ]] &&
593                 skip "no rsync command"
594         rsync --help | grep -q xattr ||
595                 skip_env "$(rsync --version | head -n1) does not support xattrs"
596         test_mkdir $DIR/$tdir
597         test_mkdir $DIR/$tdir.new
598         touch $DIR/$tdir/$tfile
599         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
600         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
601                 error "rsync failed with xattrs enabled"
602 }
603 run_test 17k "symlinks: rsync with xattrs enabled"
604
605 test_17l() { # LU-279
606         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
607                 skip "no getfattr command"
608
609         test_mkdir $DIR/$tdir
610         touch $DIR/$tdir/$tfile
611         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
612         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
613                 # -h to not follow symlinks. -m '' to list all the xattrs.
614                 # grep to remove first line: '# file: $path'.
615                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
616                 do
617                         lgetxattr_size_check $path $xattr ||
618                                 error "lgetxattr_size_check $path $xattr failed"
619                 done
620         done
621 }
622 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
623
624 # LU-1540
625 test_17m() {
626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
627         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
628                 skip_env "ldiskfs only test"
629         remote_mds_nodsh && skip "remote MDS with nodsh"
630         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
631         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
632                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
633
634         local short_sym="0123456789"
635         local wdir=$DIR/$tdir
636         local i
637
638         test_mkdir $wdir
639         long_sym=$short_sym
640         # create a long symlink file
641         for ((i = 0; i < 4; ++i)); do
642                 long_sym=${long_sym}${long_sym}
643         done
644
645         echo "create 512 short and long symlink files under $wdir"
646         for ((i = 0; i < 256; ++i)); do
647                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
648                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
649         done
650
651         echo "erase them"
652         rm -f $wdir/*
653         sync
654         wait_delete_completed
655
656         echo "recreate the 512 symlink files with a shorter string"
657         for ((i = 0; i < 512; ++i)); do
658                 # rewrite the symlink file with a shorter string
659                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
660                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
661         done
662
663         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
664         local devname=$(mdsdevname $mds_index)
665
666         echo "stop and checking mds${mds_index}:"
667         # e2fsck should not return error
668         stop mds${mds_index}
669         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
670         rc=$?
671
672         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
673                 error "start mds${mds_index} failed"
674         df $MOUNT > /dev/null 2>&1
675         [ $rc -eq 0 ] ||
676                 error "e2fsck detected error for short/long symlink: rc=$rc"
677         rm -f $wdir/*
678 }
679 run_test 17m "run e2fsck against MDT which contains short/long symlink"
680
681 check_fs_consistency_17n() {
682         local mdt_index
683         local rc=0
684
685         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
686         # so it only check MDT1/MDT2 instead of all of MDTs.
687         for mdt_index in 1 2; do
688                 local devname=$(mdsdevname $mdt_index)
689                 # e2fsck should not return error
690                 stop mds${mdt_index}
691                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
692                         rc=$((rc + $?))
693
694                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
695                         error "mount mds$mdt_index failed"
696                 df $MOUNT > /dev/null 2>&1
697         done
698         return $rc
699 }
700
701 test_17n() {
702         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
703         [ $PARALLEL == "yes" ] && skip "skip parallel run"
704         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
705                 skip_env "ldiskfs only test"
706         remote_mds_nodsh && skip "remote MDS with nodsh"
707         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
708         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
709                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
710
711         local i
712
713         test_mkdir $DIR/$tdir
714         for ((i=0; i<10; i++)); do
715                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
716                         error "create remote dir error $i"
717                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
718                         error "create files under remote dir failed $i"
719         done
720
721         check_fs_consistency_17n ||
722                 error "e2fsck report error after create files under remote dir"
723
724         for ((i = 0; i < 10; i++)); do
725                 rm -rf $DIR/$tdir/remote_dir_${i} ||
726                         error "destroy remote dir error $i"
727         done
728
729         check_fs_consistency_17n ||
730                 error "e2fsck report error after unlink files under remote dir"
731
732         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
733                 skip "lustre < 2.4.50 does not support migrate mv"
734
735         for ((i = 0; i < 10; i++)); do
736                 mkdir -p $DIR/$tdir/remote_dir_${i}
737                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
738                         error "create files under remote dir failed $i"
739                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
740                         error "migrate remote dir error $i"
741         done
742         check_fs_consistency_17n || error "e2fsck report error after migration"
743
744         for ((i = 0; i < 10; i++)); do
745                 rm -rf $DIR/$tdir/remote_dir_${i} ||
746                         error "destroy remote dir error $i"
747         done
748
749         check_fs_consistency_17n || error "e2fsck report error after unlink"
750 }
751 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
752
753 test_17o() {
754         remote_mds_nodsh && skip "remote MDS with nodsh"
755         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
756                 skip "Need MDS version at least 2.3.64"
757
758         local wdir=$DIR/${tdir}o
759         local mdt_index
760         local rc=0
761
762         test_mkdir $wdir
763         touch $wdir/$tfile
764         mdt_index=$($LFS getstripe -m $wdir/$tfile)
765         mdt_index=$((mdt_index + 1))
766
767         cancel_lru_locks mdc
768         #fail mds will wait the failover finish then set
769         #following fail_loc to avoid interfer the recovery process.
770         fail mds${mdt_index}
771
772         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
773         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
774         ls -l $wdir/$tfile && rc=1
775         do_facet mds${mdt_index} lctl set_param fail_loc=0
776         [[ $rc -eq 0 ]] || error "stat file should fail"
777 }
778 run_test 17o "stat file with incompat LMA feature"
779
780 test_18() {
781         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
782         ls $DIR || error "Failed to ls $DIR: $?"
783 }
784 run_test 18 "touch .../f ; ls ... =============================="
785
786 test_19a() {
787         touch $DIR/$tfile
788         ls -l $DIR
789         rm $DIR/$tfile
790         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
791 }
792 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
793
794 test_19b() {
795         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
796 }
797 run_test 19b "ls -l .../f19 (should return error) =============="
798
799 test_19c() {
800         [ $RUNAS_ID -eq $UID ] &&
801                 skip_env "RUNAS_ID = UID = $UID -- skipping"
802
803         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
804 }
805 run_test 19c "$RUNAS touch .../f19 (should return error) =="
806
807 test_19d() {
808         cat $DIR/f19 && error || true
809 }
810 run_test 19d "cat .../f19 (should return error) =============="
811
812 test_20() {
813         touch $DIR/$tfile
814         rm $DIR/$tfile
815         touch $DIR/$tfile
816         rm $DIR/$tfile
817         touch $DIR/$tfile
818         rm $DIR/$tfile
819         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
820 }
821 run_test 20 "touch .../f ; ls -l ..."
822
823 test_21() {
824         test_mkdir $DIR/$tdir
825         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
826         ln -s dangle $DIR/$tdir/link
827         echo foo >> $DIR/$tdir/link
828         cat $DIR/$tdir/dangle
829         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
830         $CHECKSTAT -f -t file $DIR/$tdir/link ||
831                 error "$tdir/link not linked to a file"
832 }
833 run_test 21 "write to dangling link"
834
835 test_22() {
836         local wdir=$DIR/$tdir
837         test_mkdir $wdir
838         chown $RUNAS_ID:$RUNAS_GID $wdir
839         (cd $wdir || error "cd $wdir failed";
840                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
841                 $RUNAS tar xf -)
842         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
843         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
844         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
845                 error "checkstat -u failed"
846 }
847 run_test 22 "unpack tar archive as non-root user"
848
849 # was test_23
850 test_23a() {
851         test_mkdir $DIR/$tdir
852         local file=$DIR/$tdir/$tfile
853
854         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
855         openfile -f O_CREAT:O_EXCL $file &&
856                 error "$file recreate succeeded" || true
857 }
858 run_test 23a "O_CREAT|O_EXCL in subdir"
859
860 test_23b() { # bug 18988
861         test_mkdir $DIR/$tdir
862         local file=$DIR/$tdir/$tfile
863
864         rm -f $file
865         echo foo > $file || error "write filed"
866         echo bar >> $file || error "append filed"
867         $CHECKSTAT -s 8 $file || error "wrong size"
868         rm $file
869 }
870 run_test 23b "O_APPEND check"
871
872 # LU-9409, size with O_APPEND and tiny writes
873 test_23c() {
874         local file=$DIR/$tfile
875
876         # single dd
877         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
878         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
879         rm -f $file
880
881         # racing tiny writes
882         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
883         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
884         wait
885         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
886         rm -f $file
887
888         #racing tiny & normal writes
889         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
890         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
891         wait
892         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
893         rm -f $file
894
895         #racing tiny & normal writes 2, ugly numbers
896         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
897         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
898         wait
899         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
900         rm -f $file
901 }
902 run_test 23c "O_APPEND size checks for tiny writes"
903
904 # rename sanity
905 test_24a() {
906         echo '-- same directory rename'
907         test_mkdir $DIR/$tdir
908         touch $DIR/$tdir/$tfile.1
909         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
910         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
911 }
912 run_test 24a "rename file to non-existent target"
913
914 test_24b() {
915         test_mkdir $DIR/$tdir
916         touch $DIR/$tdir/$tfile.{1,2}
917         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
918         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
919         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
920 }
921 run_test 24b "rename file to existing target"
922
923 test_24c() {
924         test_mkdir $DIR/$tdir
925         test_mkdir $DIR/$tdir/d$testnum.1
926         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
927         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
928         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
929 }
930 run_test 24c "rename directory to non-existent target"
931
932 test_24d() {
933         test_mkdir -c1 $DIR/$tdir
934         test_mkdir -c1 $DIR/$tdir/d$testnum.1
935         test_mkdir -c1 $DIR/$tdir/d$testnum.2
936         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
937         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
938         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
939 }
940 run_test 24d "rename directory to existing target"
941
942 test_24e() {
943         echo '-- cross directory renames --'
944         test_mkdir $DIR/R5a
945         test_mkdir $DIR/R5b
946         touch $DIR/R5a/f
947         mv $DIR/R5a/f $DIR/R5b/g
948         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
949         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
950 }
951 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
952
953 test_24f() {
954         test_mkdir $DIR/R6a
955         test_mkdir $DIR/R6b
956         touch $DIR/R6a/f $DIR/R6b/g
957         mv $DIR/R6a/f $DIR/R6b/g
958         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
959         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
960 }
961 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
962
963 test_24g() {
964         test_mkdir $DIR/R7a
965         test_mkdir $DIR/R7b
966         test_mkdir $DIR/R7a/d
967         mv $DIR/R7a/d $DIR/R7b/e
968         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
969         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
970 }
971 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
972
973 test_24h() {
974         test_mkdir -c1 $DIR/R8a
975         test_mkdir -c1 $DIR/R8b
976         test_mkdir -c1 $DIR/R8a/d
977         test_mkdir -c1 $DIR/R8b/e
978         mrename $DIR/R8a/d $DIR/R8b/e
979         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
980         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
981 }
982 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
983
984 test_24i() {
985         echo "-- rename error cases"
986         test_mkdir $DIR/R9
987         test_mkdir $DIR/R9/a
988         touch $DIR/R9/f
989         mrename $DIR/R9/f $DIR/R9/a
990         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
991         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
992         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
993 }
994 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
995
996 test_24j() {
997         test_mkdir $DIR/R10
998         mrename $DIR/R10/f $DIR/R10/g
999         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1000         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1001         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1002 }
1003 run_test 24j "source does not exist ============================"
1004
1005 test_24k() {
1006         test_mkdir $DIR/R11a
1007         test_mkdir $DIR/R11a/d
1008         touch $DIR/R11a/f
1009         mv $DIR/R11a/f $DIR/R11a/d
1010         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1011         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1012 }
1013 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1014
1015 # bug 2429 - rename foo foo foo creates invalid file
1016 test_24l() {
1017         f="$DIR/f24l"
1018         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1019 }
1020 run_test 24l "Renaming a file to itself ========================"
1021
1022 test_24m() {
1023         f="$DIR/f24m"
1024         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1025         # on ext3 this does not remove either the source or target files
1026         # though the "expected" operation would be to remove the source
1027         $CHECKSTAT -t file ${f} || error "${f} missing"
1028         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1029 }
1030 run_test 24m "Renaming a file to a hard link to itself ========="
1031
1032 test_24n() {
1033     f="$DIR/f24n"
1034     # this stats the old file after it was renamed, so it should fail
1035     touch ${f}
1036     $CHECKSTAT ${f} || error "${f} missing"
1037     mv ${f} ${f}.rename
1038     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1039     $CHECKSTAT -a ${f} || error "${f} exists"
1040 }
1041 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1042
1043 test_24o() {
1044         test_mkdir $DIR/$tdir
1045         rename_many -s random -v -n 10 $DIR/$tdir
1046 }
1047 run_test 24o "rename of files during htree split"
1048
1049 test_24p() {
1050         test_mkdir $DIR/R12a
1051         test_mkdir $DIR/R12b
1052         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1053         mrename $DIR/R12a $DIR/R12b
1054         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1055         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1056         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1057         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1058 }
1059 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1060
1061 cleanup_multiop_pause() {
1062         trap 0
1063         kill -USR1 $MULTIPID
1064 }
1065
1066 test_24q() {
1067         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1068
1069         test_mkdir $DIR/R13a
1070         test_mkdir $DIR/R13b
1071         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1072         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1073         MULTIPID=$!
1074
1075         trap cleanup_multiop_pause EXIT
1076         mrename $DIR/R13a $DIR/R13b
1077         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1078         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1079         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1080         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1081         cleanup_multiop_pause
1082         wait $MULTIPID || error "multiop close failed"
1083 }
1084 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1085
1086 test_24r() { #bug 3789
1087         test_mkdir $DIR/R14a
1088         test_mkdir $DIR/R14a/b
1089         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1090         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1091         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1092 }
1093 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1094
1095 test_24s() {
1096         test_mkdir $DIR/R15a
1097         test_mkdir $DIR/R15a/b
1098         test_mkdir $DIR/R15a/b/c
1099         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1100         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1101         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1102 }
1103 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1104 test_24t() {
1105         test_mkdir $DIR/R16a
1106         test_mkdir $DIR/R16a/b
1107         test_mkdir $DIR/R16a/b/c
1108         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1109         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1110         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1111 }
1112 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1113
1114 test_24u() { # bug12192
1115         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1116         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1117 }
1118 run_test 24u "create stripe file"
1119
1120 page_size() {
1121         local size
1122         size=$(getconf PAGE_SIZE 2>/dev/null)
1123         echo -n ${size:-4096}
1124 }
1125
1126 simple_cleanup_common() {
1127         local rc=0
1128         trap 0
1129         [ -z "$DIR" -o -z "$tdir" ] && return 0
1130
1131         local start=$SECONDS
1132         rm -rf $DIR/$tdir
1133         rc=$?
1134         wait_delete_completed
1135         echo "cleanup time $((SECONDS - start))"
1136         return $rc
1137 }
1138
1139 max_pages_per_rpc() {
1140         local mdtname="$(printf "MDT%04x" ${1:-0})"
1141         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1142 }
1143
1144 test_24v() {
1145         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1146
1147         local nrfiles=${COUNT:-100000}
1148         local fname="$DIR/$tdir/$tfile"
1149
1150         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1151         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1152
1153         test_mkdir "$(dirname $fname)"
1154         # assume MDT0000 has the fewest inodes
1155         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1156         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1157         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1158
1159         trap simple_cleanup_common EXIT
1160
1161         createmany -m "$fname" $nrfiles
1162
1163         cancel_lru_locks mdc
1164         lctl set_param mdc.*.stats clear
1165
1166         # was previously test_24D: LU-6101
1167         # readdir() returns correct number of entries after cursor reload
1168         local num_ls=$(ls $DIR/$tdir | wc -l)
1169         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1170         local num_all=$(ls -a $DIR/$tdir | wc -l)
1171         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1172              $num_all -ne $((nrfiles + 2)) ]; then
1173                 error "Expected $nrfiles files, got $num_ls " \
1174                         "($num_uniq unique $num_all .&..)"
1175         fi
1176         # LU-5 large readdir
1177         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1178         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1179         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1180         # take into account of overhead in lu_dirpage header and end mark in
1181         # each page, plus one in rpc_num calculation.
1182         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1183         local page_entries=$((($(page_size) - 24) / dirent_size))
1184         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1185         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1186         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1187         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1188         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1189         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1190                 error "large readdir doesn't take effect: " \
1191                       "$mds_readpage should be about $rpc_max"
1192
1193         simple_cleanup_common
1194 }
1195 run_test 24v "list large directory (test hash collision, b=17560)"
1196
1197 test_24w() { # bug21506
1198         SZ1=234852
1199         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1200         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1201         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1202         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1203         [[ "$SZ1" -eq "$SZ2" ]] ||
1204                 error "Error reading at the end of the file $tfile"
1205 }
1206 run_test 24w "Reading a file larger than 4Gb"
1207
1208 test_24x() {
1209         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1210         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1211         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1212                 skip "Need MDS version at least 2.7.56"
1213
1214         local MDTIDX=1
1215         local remote_dir=$DIR/$tdir/remote_dir
1216
1217         test_mkdir $DIR/$tdir
1218         $LFS mkdir -i $MDTIDX $remote_dir ||
1219                 error "create remote directory failed"
1220
1221         test_mkdir $DIR/$tdir/src_dir
1222         touch $DIR/$tdir/src_file
1223         test_mkdir $remote_dir/tgt_dir
1224         touch $remote_dir/tgt_file
1225
1226         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1227                 error "rename dir cross MDT failed!"
1228
1229         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1230                 error "rename file cross MDT failed!"
1231
1232         touch $DIR/$tdir/ln_file
1233         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1234                 error "ln file cross MDT failed"
1235
1236         rm -rf $DIR/$tdir || error "Can not delete directories"
1237 }
1238 run_test 24x "cross MDT rename/link"
1239
1240 test_24y() {
1241         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1242         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1243
1244         local remote_dir=$DIR/$tdir/remote_dir
1245         local mdtidx=1
1246
1247         test_mkdir $DIR/$tdir
1248         $LFS mkdir -i $mdtidx $remote_dir ||
1249                 error "create remote directory failed"
1250
1251         test_mkdir $remote_dir/src_dir
1252         touch $remote_dir/src_file
1253         test_mkdir $remote_dir/tgt_dir
1254         touch $remote_dir/tgt_file
1255
1256         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1257                 error "rename subdir in the same remote dir failed!"
1258
1259         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1260                 error "rename files in the same remote dir failed!"
1261
1262         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1263                 error "link files in the same remote dir failed!"
1264
1265         rm -rf $DIR/$tdir || error "Can not delete directories"
1266 }
1267 run_test 24y "rename/link on the same dir should succeed"
1268
1269 test_24A() { # LU-3182
1270         local NFILES=5000
1271
1272         rm -rf $DIR/$tdir
1273         test_mkdir $DIR/$tdir
1274         trap simple_cleanup_common EXIT
1275         createmany -m $DIR/$tdir/$tfile $NFILES
1276         local t=$(ls $DIR/$tdir | wc -l)
1277         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1278         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1279         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1280                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1281         fi
1282
1283         simple_cleanup_common || error "Can not delete directories"
1284 }
1285 run_test 24A "readdir() returns correct number of entries."
1286
1287 test_24B() { # LU-4805
1288         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1289
1290         local count
1291
1292         test_mkdir $DIR/$tdir
1293         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1294                 error "create striped dir failed"
1295
1296         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1297         [ $count -eq 2 ] || error "Expected 2, got $count"
1298
1299         touch $DIR/$tdir/striped_dir/a
1300
1301         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1302         [ $count -eq 3 ] || error "Expected 3, got $count"
1303
1304         touch $DIR/$tdir/striped_dir/.f
1305
1306         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1307         [ $count -eq 4 ] || error "Expected 4, got $count"
1308
1309         rm -rf $DIR/$tdir || error "Can not delete directories"
1310 }
1311 run_test 24B "readdir for striped dir return correct number of entries"
1312
1313 test_24C() {
1314         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1315
1316         mkdir $DIR/$tdir
1317         mkdir $DIR/$tdir/d0
1318         mkdir $DIR/$tdir/d1
1319
1320         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1321                 error "create striped dir failed"
1322
1323         cd $DIR/$tdir/d0/striped_dir
1324
1325         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1326         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1327         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1328
1329         [ "$d0_ino" = "$parent_ino" ] ||
1330                 error ".. wrong, expect $d0_ino, get $parent_ino"
1331
1332         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1333                 error "mv striped dir failed"
1334
1335         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1336
1337         [ "$d1_ino" = "$parent_ino" ] ||
1338                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1339 }
1340 run_test 24C "check .. in striped dir"
1341
1342 test_24E() {
1343         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1344         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1345
1346         mkdir -p $DIR/$tdir
1347         mkdir $DIR/$tdir/src_dir
1348         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1349                 error "create remote source failed"
1350
1351         touch $DIR/$tdir/src_dir/src_child/a
1352
1353         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1354                 error "create remote target dir failed"
1355
1356         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1357                 error "create remote target child failed"
1358
1359         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1360                 error "rename dir cross MDT failed!"
1361
1362         find $DIR/$tdir
1363
1364         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1365                 error "src_child still exists after rename"
1366
1367         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1368                 error "missing file(a) after rename"
1369
1370         rm -rf $DIR/$tdir || error "Can not delete directories"
1371 }
1372 run_test 24E "cross MDT rename/link"
1373
1374 test_25a() {
1375         echo '== symlink sanity ============================================='
1376
1377         test_mkdir $DIR/d25
1378         ln -s d25 $DIR/s25
1379         touch $DIR/s25/foo ||
1380                 error "File creation in symlinked directory failed"
1381 }
1382 run_test 25a "create file in symlinked directory ==============="
1383
1384 test_25b() {
1385         [ ! -d $DIR/d25 ] && test_25a
1386         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1387 }
1388 run_test 25b "lookup file in symlinked directory ==============="
1389
1390 test_26a() {
1391         test_mkdir $DIR/d26
1392         test_mkdir $DIR/d26/d26-2
1393         ln -s d26/d26-2 $DIR/s26
1394         touch $DIR/s26/foo || error "File creation failed"
1395 }
1396 run_test 26a "multiple component symlink ======================="
1397
1398 test_26b() {
1399         test_mkdir -p $DIR/$tdir/d26-2
1400         ln -s $tdir/d26-2/foo $DIR/s26-2
1401         touch $DIR/s26-2 || error "File creation failed"
1402 }
1403 run_test 26b "multiple component symlink at end of lookup ======"
1404
1405 test_26c() {
1406         test_mkdir $DIR/d26.2
1407         touch $DIR/d26.2/foo
1408         ln -s d26.2 $DIR/s26.2-1
1409         ln -s s26.2-1 $DIR/s26.2-2
1410         ln -s s26.2-2 $DIR/s26.2-3
1411         chmod 0666 $DIR/s26.2-3/foo
1412 }
1413 run_test 26c "chain of symlinks"
1414
1415 # recursive symlinks (bug 439)
1416 test_26d() {
1417         ln -s d26-3/foo $DIR/d26-3
1418 }
1419 run_test 26d "create multiple component recursive symlink"
1420
1421 test_26e() {
1422         [ ! -h $DIR/d26-3 ] && test_26d
1423         rm $DIR/d26-3
1424 }
1425 run_test 26e "unlink multiple component recursive symlink"
1426
1427 # recursive symlinks (bug 7022)
1428 test_26f() {
1429         test_mkdir $DIR/$tdir
1430         test_mkdir $DIR/$tdir/$tfile
1431         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1432         test_mkdir -p lndir/bar1
1433         test_mkdir $DIR/$tdir/$tfile/$tfile
1434         cd $tfile                || error "cd $tfile failed"
1435         ln -s .. dotdot          || error "ln dotdot failed"
1436         ln -s dotdot/lndir lndir || error "ln lndir failed"
1437         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1438         output=`ls $tfile/$tfile/lndir/bar1`
1439         [ "$output" = bar1 ] && error "unexpected output"
1440         rm -r $tfile             || error "rm $tfile failed"
1441         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1442 }
1443 run_test 26f "rm -r of a directory which has recursive symlink"
1444
1445 test_27a() {
1446         test_mkdir $DIR/$tdir
1447         $LFS getstripe $DIR/$tdir
1448         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1449         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1450         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1451 }
1452 run_test 27a "one stripe file"
1453
1454 test_27b() {
1455         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1456
1457         test_mkdir $DIR/$tdir
1458         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1459         $LFS getstripe -c $DIR/$tdir/$tfile
1460         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1461                 error "two-stripe file doesn't have two stripes"
1462
1463         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1464 }
1465 run_test 27b "create and write to two stripe file"
1466
1467 test_27d() {
1468         test_mkdir $DIR/$tdir
1469         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1470                 error "setstripe failed"
1471         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1472         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1473 }
1474 run_test 27d "create file with default settings"
1475
1476 test_27e() {
1477         # LU-5839 adds check for existed layout before setting it
1478         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1479                 skip "Need MDS version at least 2.7.56"
1480
1481         test_mkdir $DIR/$tdir
1482         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1483         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1484         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1485 }
1486 run_test 27e "setstripe existing file (should return error)"
1487
1488 test_27f() {
1489         test_mkdir $DIR/$tdir
1490         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1491                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1492         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1493                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1494         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1495         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1496 }
1497 run_test 27f "setstripe with bad stripe size (should return error)"
1498
1499 test_27g() {
1500         test_mkdir $DIR/$tdir
1501         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1502         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1503                 error "$DIR/$tdir/$tfile has object"
1504 }
1505 run_test 27g "$LFS getstripe with no objects"
1506
1507 test_27i() {
1508         test_mkdir $DIR/$tdir
1509         touch $DIR/$tdir/$tfile || error "touch failed"
1510         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1511                 error "missing objects"
1512 }
1513 run_test 27i "$LFS getstripe with some objects"
1514
1515 test_27j() {
1516         test_mkdir $DIR/$tdir
1517         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1518                 error "setstripe failed" || true
1519 }
1520 run_test 27j "setstripe with bad stripe offset (should return error)"
1521
1522 test_27k() { # bug 2844
1523         test_mkdir $DIR/$tdir
1524         local file=$DIR/$tdir/$tfile
1525         local ll_max_blksize=$((4 * 1024 * 1024))
1526         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1527         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1528         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1529         dd if=/dev/zero of=$file bs=4k count=1
1530         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1531         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1532 }
1533 run_test 27k "limit i_blksize for broken user apps"
1534
1535 test_27l() {
1536         mcreate $DIR/$tfile || error "creating file"
1537         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1538                 error "setstripe should have failed" || true
1539 }
1540 run_test 27l "check setstripe permissions (should return error)"
1541
1542 test_27m() {
1543         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1544
1545         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1546                    head -n1)
1547         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1548                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1549         fi
1550         trap simple_cleanup_common EXIT
1551         test_mkdir $DIR/$tdir
1552         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1553         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1554                 error "dd should fill OST0"
1555         i=2
1556         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1557                 i=$((i + 1))
1558                 [ $i -gt 256 ] && break
1559         done
1560         i=$((i + 1))
1561         touch $DIR/$tdir/$tfile.$i
1562         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1563             awk '{print $1}'| grep -w "0") ] &&
1564                 error "OST0 was full but new created file still use it"
1565         i=$((i + 1))
1566         touch $DIR/$tdir/$tfile.$i
1567         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1568             awk '{print $1}'| grep -w "0") ] &&
1569                 error "OST0 was full but new created file still use it"
1570         simple_cleanup_common
1571 }
1572 run_test 27m "create file while OST0 was full"
1573
1574 sleep_maxage() {
1575         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1576                       awk '{ print $1 * 2; exit; }')
1577         sleep $delay
1578 }
1579
1580 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1581 # if the OST isn't full anymore.
1582 reset_enospc() {
1583         local OSTIDX=${1:-""}
1584
1585         local list=$(comma_list $(osts_nodes))
1586         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1587
1588         do_nodes $list lctl set_param fail_loc=0
1589         sync    # initiate all OST_DESTROYs from MDS to OST
1590         sleep_maxage
1591 }
1592
1593 exhaust_precreations() {
1594         local OSTIDX=$1
1595         local FAILLOC=$2
1596         local FAILIDX=${3:-$OSTIDX}
1597         local ofacet=ost$((OSTIDX + 1))
1598
1599         test_mkdir -p -c1 $DIR/$tdir
1600         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1601         local mfacet=mds$((mdtidx + 1))
1602         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1603
1604         local OST=$(ostname_from_index $OSTIDX)
1605
1606         # on the mdt's osc
1607         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1608         local last_id=$(do_facet $mfacet lctl get_param -n \
1609                         osc.$mdtosc_proc1.prealloc_last_id)
1610         local next_id=$(do_facet $mfacet lctl get_param -n \
1611                         osc.$mdtosc_proc1.prealloc_next_id)
1612
1613         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1614         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1615
1616         test_mkdir -p $DIR/$tdir/${OST}
1617         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1618 #define OBD_FAIL_OST_ENOSPC              0x215
1619         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1620         echo "Creating to objid $last_id on ost $OST..."
1621         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1622         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1623         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1624         sleep_maxage
1625 }
1626
1627 exhaust_all_precreations() {
1628         local i
1629         for (( i=0; i < OSTCOUNT; i++ )) ; do
1630                 exhaust_precreations $i $1 -1
1631         done
1632 }
1633
1634 test_27n() {
1635         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1636         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1637         remote_mds_nodsh && skip "remote MDS with nodsh"
1638         remote_ost_nodsh && skip "remote OST with nodsh"
1639
1640         reset_enospc
1641         rm -f $DIR/$tdir/$tfile
1642         exhaust_precreations 0 0x80000215
1643         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1644         touch $DIR/$tdir/$tfile || error "touch failed"
1645         $LFS getstripe $DIR/$tdir/$tfile
1646         reset_enospc
1647 }
1648 run_test 27n "create file with some full OSTs"
1649
1650 test_27o() {
1651         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1652         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1653         remote_mds_nodsh && skip "remote MDS with nodsh"
1654         remote_ost_nodsh && skip "remote OST with nodsh"
1655
1656         reset_enospc
1657         rm -f $DIR/$tdir/$tfile
1658         exhaust_all_precreations 0x215
1659
1660         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1661
1662         reset_enospc
1663         rm -rf $DIR/$tdir/*
1664 }
1665 run_test 27o "create file with all full OSTs (should error)"
1666
1667 test_27p() {
1668         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1669         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1670         remote_mds_nodsh && skip "remote MDS with nodsh"
1671         remote_ost_nodsh && skip "remote OST with nodsh"
1672
1673         reset_enospc
1674         rm -f $DIR/$tdir/$tfile
1675         test_mkdir $DIR/$tdir
1676
1677         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1678         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1679         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1680
1681         exhaust_precreations 0 0x80000215
1682         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1683         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1684         $LFS getstripe $DIR/$tdir/$tfile
1685
1686         reset_enospc
1687 }
1688 run_test 27p "append to a truncated file with some full OSTs"
1689
1690 test_27q() {
1691         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1692         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1693         remote_mds_nodsh && skip "remote MDS with nodsh"
1694         remote_ost_nodsh && skip "remote OST with nodsh"
1695
1696         reset_enospc
1697         rm -f $DIR/$tdir/$tfile
1698
1699         test_mkdir $DIR/$tdir
1700         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1701         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1702                 error "truncate $DIR/$tdir/$tfile failed"
1703         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1704
1705         exhaust_all_precreations 0x215
1706
1707         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1708         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1709
1710         reset_enospc
1711 }
1712 run_test 27q "append to truncated file with all OSTs full (should error)"
1713
1714 test_27r() {
1715         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1716         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1717         remote_mds_nodsh && skip "remote MDS with nodsh"
1718         remote_ost_nodsh && skip "remote OST with nodsh"
1719
1720         reset_enospc
1721         rm -f $DIR/$tdir/$tfile
1722         exhaust_precreations 0 0x80000215
1723
1724         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1725
1726         reset_enospc
1727 }
1728 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1729
1730 test_27s() { # bug 10725
1731         test_mkdir $DIR/$tdir
1732         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1733         local stripe_count=0
1734         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1735         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1736                 error "stripe width >= 2^32 succeeded" || true
1737
1738 }
1739 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1740
1741 test_27t() { # bug 10864
1742         WDIR=$(pwd)
1743         WLFS=$(which lfs)
1744         cd $DIR
1745         touch $tfile
1746         $WLFS getstripe $tfile
1747         cd $WDIR
1748 }
1749 run_test 27t "check that utils parse path correctly"
1750
1751 test_27u() { # bug 4900
1752         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1753         remote_mds_nodsh && skip "remote MDS with nodsh"
1754
1755         local index
1756         local list=$(comma_list $(mdts_nodes))
1757
1758 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1759         do_nodes $list $LCTL set_param fail_loc=0x139
1760         test_mkdir -p $DIR/$tdir
1761         trap simple_cleanup_common EXIT
1762         createmany -o $DIR/$tdir/t- 1000
1763         do_nodes $list $LCTL set_param fail_loc=0
1764
1765         TLOG=$TMP/$tfile.getstripe
1766         $LFS getstripe $DIR/$tdir > $TLOG
1767         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1768         unlinkmany $DIR/$tdir/t- 1000
1769         trap 0
1770         [[ $OBJS -gt 0 ]] &&
1771                 error "$OBJS objects created on OST-0. See $TLOG" ||
1772                 rm -f $TLOG
1773 }
1774 run_test 27u "skip object creation on OSC w/o objects"
1775
1776 test_27v() { # bug 4900
1777         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1778         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1779         remote_mds_nodsh && skip "remote MDS with nodsh"
1780         remote_ost_nodsh && skip "remote OST with nodsh"
1781
1782         exhaust_all_precreations 0x215
1783         reset_enospc
1784
1785         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1786
1787         touch $DIR/$tdir/$tfile
1788         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1789         # all except ost1
1790         for (( i=1; i < OSTCOUNT; i++ )); do
1791                 do_facet ost$i lctl set_param fail_loc=0x705
1792         done
1793         local START=`date +%s`
1794         createmany -o $DIR/$tdir/$tfile 32
1795
1796         local FINISH=`date +%s`
1797         local TIMEOUT=`lctl get_param -n timeout`
1798         local PROCESS=$((FINISH - START))
1799         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1800                error "$FINISH - $START >= $TIMEOUT / 2"
1801         sleep $((TIMEOUT / 2 - PROCESS))
1802         reset_enospc
1803 }
1804 run_test 27v "skip object creation on slow OST"
1805
1806 test_27w() { # bug 10997
1807         test_mkdir $DIR/$tdir
1808         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1809         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1810                 error "stripe size $size != 65536" || true
1811         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1812                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1813 }
1814 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1815
1816 test_27wa() {
1817         [[ $OSTCOUNT -lt 2 ]] &&
1818                 skip_env "skipping multiple stripe count/offset test"
1819
1820         test_mkdir $DIR/$tdir
1821         for i in $(seq 1 $OSTCOUNT); do
1822                 offset=$((i - 1))
1823                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1824                         error "setstripe -c $i -i $offset failed"
1825                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1826                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1827                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1828                 [ $index -ne $offset ] &&
1829                         error "stripe offset $index != $offset" || true
1830         done
1831 }
1832 run_test 27wa "check $LFS setstripe -c -i options"
1833
1834 test_27x() {
1835         remote_ost_nodsh && skip "remote OST with nodsh"
1836         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1837         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1838
1839         OFFSET=$(($OSTCOUNT - 1))
1840         OSTIDX=0
1841         local OST=$(ostname_from_index $OSTIDX)
1842
1843         test_mkdir $DIR/$tdir
1844         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1845         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1846         sleep_maxage
1847         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1848         for i in $(seq 0 $OFFSET); do
1849                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1850                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1851                 error "OST0 was degraded but new created file still use it"
1852         done
1853         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1854 }
1855 run_test 27x "create files while OST0 is degraded"
1856
1857 test_27y() {
1858         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1859         remote_mds_nodsh && skip "remote MDS with nodsh"
1860         remote_ost_nodsh && skip "remote OST with nodsh"
1861         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1862
1863         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1864         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1865                 osc.$mdtosc.prealloc_last_id)
1866         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1867                 osc.$mdtosc.prealloc_next_id)
1868         local fcount=$((last_id - next_id))
1869         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1870         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1871
1872         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1873                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1874         local OST_DEACTIVE_IDX=-1
1875         local OSC
1876         local OSTIDX
1877         local OST
1878
1879         for OSC in $MDS_OSCS; do
1880                 OST=$(osc_to_ost $OSC)
1881                 OSTIDX=$(index_from_ostuuid $OST)
1882                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1883                         OST_DEACTIVE_IDX=$OSTIDX
1884                 fi
1885                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1886                         echo $OSC "is Deactivated:"
1887                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1888                 fi
1889         done
1890
1891         OSTIDX=$(index_from_ostuuid $OST)
1892         test_mkdir $DIR/$tdir
1893         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1894
1895         for OSC in $MDS_OSCS; do
1896                 OST=$(osc_to_ost $OSC)
1897                 OSTIDX=$(index_from_ostuuid $OST)
1898                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1899                         echo $OST "is degraded:"
1900                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1901                                                 obdfilter.$OST.degraded=1
1902                 fi
1903         done
1904
1905         sleep_maxage
1906         createmany -o $DIR/$tdir/$tfile $fcount
1907
1908         for OSC in $MDS_OSCS; do
1909                 OST=$(osc_to_ost $OSC)
1910                 OSTIDX=$(index_from_ostuuid $OST)
1911                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1912                         echo $OST "is recovered from degraded:"
1913                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1914                                                 obdfilter.$OST.degraded=0
1915                 else
1916                         do_facet $SINGLEMDS lctl --device %$OSC activate
1917                 fi
1918         done
1919
1920         # all osp devices get activated, hence -1 stripe count restored
1921         local stripe_count=0
1922
1923         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1924         # devices get activated.
1925         sleep_maxage
1926         $LFS setstripe -c -1 $DIR/$tfile
1927         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1928         rm -f $DIR/$tfile
1929         [ $stripe_count -ne $OSTCOUNT ] &&
1930                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1931         return 0
1932 }
1933 run_test 27y "create files while OST0 is degraded and the rest inactive"
1934
1935 check_seq_oid()
1936 {
1937         log "check file $1"
1938
1939         lmm_count=$($GETSTRIPE -c $1)
1940         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1941         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1942
1943         local old_ifs="$IFS"
1944         IFS=$'[:]'
1945         fid=($($LFS path2fid $1))
1946         IFS="$old_ifs"
1947
1948         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1949         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1950
1951         # compare lmm_seq and lu_fid->f_seq
1952         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1953         # compare lmm_object_id and lu_fid->oid
1954         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1955
1956         # check the trusted.fid attribute of the OST objects of the file
1957         local have_obdidx=false
1958         local stripe_nr=0
1959         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1960                 # skip lines up to and including "obdidx"
1961                 [ -z "$obdidx" ] && break
1962                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1963                 $have_obdidx || continue
1964
1965                 local ost=$((obdidx + 1))
1966                 local dev=$(ostdevname $ost)
1967                 local oid_hex
1968
1969                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1970
1971                 seq=$(echo $seq | sed -e "s/^0x//g")
1972                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1973                         oid_hex=$(echo $oid)
1974                 else
1975                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1976                 fi
1977                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1978
1979                 local ff=""
1980                 #
1981                 # Don't unmount/remount the OSTs if we don't need to do that.
1982                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1983                 # update too, until that use mount/ll_decode_filter_fid/mount.
1984                 # Re-enable when debugfs will understand new filter_fid.
1985                 #
1986                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1987                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1988                                 $dev 2>/dev/null" | grep "parent=")
1989                 fi
1990                 if [ -z "$ff" ]; then
1991                         stop ost$ost
1992                         mount_fstype ost$ost
1993                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1994                                 $(facet_mntpt ost$ost)/$obj_file)
1995                         unmount_fstype ost$ost
1996                         start ost$ost $dev $OST_MOUNT_OPTS
1997                         clients_up
1998                 fi
1999
2000                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2001
2002                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2003
2004                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2005                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2006                 #
2007                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2008                 #       stripe_size=1048576 component_id=1 component_start=0 \
2009                 #       component_end=33554432
2010                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2011                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2012                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2013                 local ff_pstripe
2014                 if grep -q 'stripe=' <<<$ff; then
2015                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2016                 else
2017                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2018                         # into f_ver in this case.  See comment on ff_parent.
2019                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2020                 fi
2021
2022                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2023                 [ $ff_pseq = $lmm_seq ] ||
2024                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2025                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2026                 [ $ff_poid = $lmm_oid ] ||
2027                         error "FF parent OID $ff_poid != $lmm_oid"
2028                 (($ff_pstripe == $stripe_nr)) ||
2029                         error "FF stripe $ff_pstripe != $stripe_nr"
2030
2031                 stripe_nr=$((stripe_nr + 1))
2032                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2033                         continue
2034                 if grep -q 'stripe_count=' <<<$ff; then
2035                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2036                                             -e 's/ .*//' <<<$ff)
2037                         [ $lmm_count = $ff_scnt ] ||
2038                                 error "FF stripe count $lmm_count != $ff_scnt"
2039                 fi
2040         done
2041 }
2042
2043 test_27z() {
2044         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2045         remote_ost_nodsh && skip "remote OST with nodsh"
2046
2047         test_mkdir $DIR/$tdir
2048         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2049                 { error "setstripe -c -1 failed"; return 1; }
2050         # We need to send a write to every object to get parent FID info set.
2051         # This _should_ also work for setattr, but does not currently.
2052         # touch $DIR/$tdir/$tfile-1 ||
2053         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2054                 { error "dd $tfile-1 failed"; return 2; }
2055         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2056                 { error "setstripe -c -1 failed"; return 3; }
2057         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2058                 { error "dd $tfile-2 failed"; return 4; }
2059
2060         # make sure write RPCs have been sent to OSTs
2061         sync; sleep 5; sync
2062
2063         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2064         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2065 }
2066 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2067
2068 test_27A() { # b=19102
2069         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2070
2071         save_layout_restore_at_exit $MOUNT
2072         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2073         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2074                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2075         local default_size=$($GETSTRIPE -S $MOUNT)
2076         local default_offset=$($GETSTRIPE -i $MOUNT)
2077         local dsize=$(do_facet $SINGLEMDS \
2078                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2079         [ $default_size -eq $dsize ] ||
2080                 error "stripe size $default_size != $dsize"
2081         [ $default_offset -eq -1 ] ||
2082                 error "stripe offset $default_offset != -1"
2083 }
2084 run_test 27A "check filesystem-wide default LOV EA values"
2085
2086 test_27B() { # LU-2523
2087         test_mkdir $DIR/$tdir
2088         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2089         touch $DIR/$tdir/f0
2090         # open f1 with O_LOV_DELAY_CREATE
2091         # rename f0 onto f1
2092         # call setstripe ioctl on open file descriptor for f1
2093         # close
2094         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2095                 $DIR/$tdir/f0
2096
2097         rm -f $DIR/$tdir/f1
2098         # open f1 with O_LOV_DELAY_CREATE
2099         # unlink f1
2100         # call setstripe ioctl on open file descriptor for f1
2101         # close
2102         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2103
2104         # Allow multiop to fail in imitation of NFS's busted semantics.
2105         true
2106 }
2107 run_test 27B "call setstripe on open unlinked file/rename victim"
2108
2109 test_27C() { #LU-2871
2110         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2111
2112         declare -a ost_idx
2113         local index
2114         local found
2115         local i
2116         local j
2117
2118         test_mkdir $DIR/$tdir
2119         cd $DIR/$tdir
2120         for i in $(seq 0 $((OSTCOUNT - 1))); do
2121                 # set stripe across all OSTs starting from OST$i
2122                 $SETSTRIPE -i $i -c -1 $tfile$i
2123                 # get striping information
2124                 ost_idx=($($GETSTRIPE $tfile$i |
2125                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2126                 echo ${ost_idx[@]}
2127
2128                 # check the layout
2129                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2130                         error "${#ost_idx[@]} != $OSTCOUNT"
2131
2132                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2133                         found=0
2134                         for j in $(echo ${ost_idx[@]}); do
2135                                 if [ $index -eq $j ]; then
2136                                         found=1
2137                                         break
2138                                 fi
2139                         done
2140                         [ $found = 1 ] ||
2141                                 error "Can not find $index in ${ost_idx[@]}"
2142                 done
2143         done
2144 }
2145 run_test 27C "check full striping across all OSTs"
2146
2147 test_27D() {
2148         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2149         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2150         remote_mds_nodsh && skip "remote MDS with nodsh"
2151
2152         local POOL=${POOL:-testpool}
2153         local first_ost=0
2154         local last_ost=$(($OSTCOUNT - 1))
2155         local ost_step=1
2156         local ost_list=$(seq $first_ost $ost_step $last_ost)
2157         local ost_range="$first_ost $last_ost $ost_step"
2158
2159         if ! combined_mgs_mds ; then
2160                 mount_mgs_client
2161         fi
2162
2163         test_mkdir $DIR/$tdir
2164         pool_add $POOL || error "pool_add failed"
2165         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2166
2167         local skip27D
2168         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2169                 skip27D+="-s 29"
2170         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2171           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2172                 skip27D+=" -s 30,31"
2173         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2174                 error "llapi_layout_test failed"
2175
2176         destroy_test_pools || error "destroy test pools failed"
2177
2178         if ! combined_mgs_mds ; then
2179                 umount_mgs_client
2180         fi
2181 }
2182 run_test 27D "validate llapi_layout API"
2183
2184 # Verify that default_easize is increased from its initial value after
2185 # accessing a widely striped file.
2186 test_27E() {
2187         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2188         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2189                 skip "client does not have LU-3338 fix"
2190
2191         # 72 bytes is the minimum space required to store striping
2192         # information for a file striped across one OST:
2193         # (sizeof(struct lov_user_md_v3) +
2194         #  sizeof(struct lov_user_ost_data_v1))
2195         local min_easize=72
2196         $LCTL set_param -n llite.*.default_easize $min_easize ||
2197                 error "lctl set_param failed"
2198         local easize=$($LCTL get_param -n llite.*.default_easize)
2199
2200         [ $easize -eq $min_easize ] ||
2201                 error "failed to set default_easize"
2202
2203         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2204                 error "setstripe failed"
2205         cat $DIR/$tfile
2206         rm $DIR/$tfile
2207
2208         easize=$($LCTL get_param -n llite.*.default_easize)
2209
2210         [ $easize -gt $min_easize ] ||
2211                 error "default_easize not updated"
2212 }
2213 run_test 27E "check that default extended attribute size properly increases"
2214
2215 test_27F() { # LU-5346/LU-7975
2216         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2217         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2218         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2219                 skip "Need MDS version at least 2.8.51"
2220         remote_ost_nodsh && skip "remote OST with nodsh"
2221
2222         test_mkdir $DIR/$tdir
2223         rm -f $DIR/$tdir/f0
2224         $SETSTRIPE -c 2 $DIR/$tdir
2225
2226         # stop all OSTs to reproduce situation for LU-7975 ticket
2227         for num in $(seq $OSTCOUNT); do
2228                 stop ost$num
2229         done
2230
2231         # open/create f0 with O_LOV_DELAY_CREATE
2232         # truncate f0 to a non-0 size
2233         # close
2234         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2235
2236         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2237         # open/write it again to force delayed layout creation
2238         cat /etc/hosts > $DIR/$tdir/f0 &
2239         catpid=$!
2240
2241         # restart OSTs
2242         for num in $(seq $OSTCOUNT); do
2243                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2244                         error "ost$num failed to start"
2245         done
2246
2247         wait $catpid || error "cat failed"
2248
2249         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2250         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2251
2252 }
2253 run_test 27F "Client resend delayed layout creation with non-zero size"
2254
2255 test_27G() { #LU-10629
2256         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2257         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2258         local POOL=${POOL:-testpool}
2259         local ostrange="0 0 1"
2260
2261         test_mkdir $DIR/$tdir
2262         pool_add $POOL || error "pool_add failed"
2263         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2264         $LFS setstripe -p $POOL $DIR/$tdir
2265
2266         local pool=$($LFS getstripe -p $DIR/$tdir)
2267
2268         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2269
2270         $LFS setstripe -d $DIR/$tdir
2271
2272         pool=$($LFS getstripe -p $DIR/$tdir)
2273
2274         rmdir $DIR/$tdir
2275
2276         [ -z "$pool" ] || error "'$pool' is not empty"
2277 }
2278 run_test 27G "Clear OST pool from stripe"
2279
2280 # createtest also checks that device nodes are created and
2281 # then visible correctly (#2091)
2282 test_28() { # bug 2091
2283         test_mkdir $DIR/d28
2284         $CREATETEST $DIR/d28/ct || error "createtest failed"
2285 }
2286 run_test 28 "create/mknod/mkdir with bad file types ============"
2287
2288 test_29() {
2289         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2290
2291         sync; sleep 1; sync # flush out any dirty pages from previous tests
2292         cancel_lru_locks
2293         test_mkdir $DIR/d29
2294         touch $DIR/d29/foo
2295         log 'first d29'
2296         ls -l $DIR/d29
2297
2298         declare -i LOCKCOUNTORIG=0
2299         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2300                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2301         done
2302         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2303
2304         declare -i LOCKUNUSEDCOUNTORIG=0
2305         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2306                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2307         done
2308
2309         log 'second d29'
2310         ls -l $DIR/d29
2311         log 'done'
2312
2313         declare -i LOCKCOUNTCURRENT=0
2314         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2315                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2316         done
2317
2318         declare -i LOCKUNUSEDCOUNTCURRENT=0
2319         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2320                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2321         done
2322
2323         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2324                 $LCTL set_param -n ldlm.dump_namespaces ""
2325                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2326                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2327                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2328                 return 2
2329         fi
2330         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2331                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2332                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2333                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2334                 return 3
2335         fi
2336 }
2337 run_test 29 "IT_GETATTR regression  ============================"
2338
2339 test_30a() { # was test_30
2340         cp $(which ls) $DIR || cp /bin/ls $DIR
2341         $DIR/ls / || error "Can't execute binary from lustre"
2342         rm $DIR/ls
2343 }
2344 run_test 30a "execute binary from Lustre (execve) =============="
2345
2346 test_30b() {
2347         cp `which ls` $DIR || cp /bin/ls $DIR
2348         chmod go+rx $DIR/ls
2349         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2350         rm $DIR/ls
2351 }
2352 run_test 30b "execute binary from Lustre as non-root ==========="
2353
2354 test_30c() { # b=22376
2355         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2356
2357         cp `which ls` $DIR || cp /bin/ls $DIR
2358         chmod a-rw $DIR/ls
2359         cancel_lru_locks mdc
2360         cancel_lru_locks osc
2361         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2362         rm -f $DIR/ls
2363 }
2364 run_test 30c "execute binary from Lustre without read perms ===="
2365
2366 test_31a() {
2367         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2368         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2369 }
2370 run_test 31a "open-unlink file =================================="
2371
2372 test_31b() {
2373         touch $DIR/f31 || error "touch $DIR/f31 failed"
2374         ln $DIR/f31 $DIR/f31b || error "ln failed"
2375         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2376         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2377 }
2378 run_test 31b "unlink file with multiple links while open ======="
2379
2380 test_31c() {
2381         touch $DIR/f31 || error "touch $DIR/f31 failed"
2382         ln $DIR/f31 $DIR/f31c || error "ln failed"
2383         multiop_bg_pause $DIR/f31 O_uc ||
2384                 error "multiop_bg_pause for $DIR/f31 failed"
2385         MULTIPID=$!
2386         $MULTIOP $DIR/f31c Ouc
2387         kill -USR1 $MULTIPID
2388         wait $MULTIPID
2389 }
2390 run_test 31c "open-unlink file with multiple links ============="
2391
2392 test_31d() {
2393         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2394         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2395 }
2396 run_test 31d "remove of open directory ========================="
2397
2398 test_31e() { # bug 2904
2399         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2400 }
2401 run_test 31e "remove of open non-empty directory ==============="
2402
2403 test_31f() { # bug 4554
2404         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2405
2406         set -vx
2407         test_mkdir $DIR/d31f
2408         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2409         cp /etc/hosts $DIR/d31f
2410         ls -l $DIR/d31f
2411         $GETSTRIPE $DIR/d31f/hosts
2412         multiop_bg_pause $DIR/d31f D_c || return 1
2413         MULTIPID=$!
2414
2415         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2416         test_mkdir $DIR/d31f
2417         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2418         cp /etc/hosts $DIR/d31f
2419         ls -l $DIR/d31f
2420         $GETSTRIPE $DIR/d31f/hosts
2421         multiop_bg_pause $DIR/d31f D_c || return 1
2422         MULTIPID2=$!
2423
2424         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2425         wait $MULTIPID || error "first opendir $MULTIPID failed"
2426
2427         sleep 6
2428
2429         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2430         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2431         set +vx
2432 }
2433 run_test 31f "remove of open directory with open-unlink file ==="
2434
2435 test_31g() {
2436         echo "-- cross directory link --"
2437         test_mkdir -c1 $DIR/${tdir}ga
2438         test_mkdir -c1 $DIR/${tdir}gb
2439         touch $DIR/${tdir}ga/f
2440         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2441         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2442         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2443         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2444         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2445 }
2446 run_test 31g "cross directory link==============="
2447
2448 test_31h() {
2449         echo "-- cross directory link --"
2450         test_mkdir -c1 $DIR/${tdir}
2451         test_mkdir -c1 $DIR/${tdir}/dir
2452         touch $DIR/${tdir}/f
2453         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2454         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2455         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2456         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2457         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2458 }
2459 run_test 31h "cross directory link under child==============="
2460
2461 test_31i() {
2462         echo "-- cross directory link --"
2463         test_mkdir -c1 $DIR/$tdir
2464         test_mkdir -c1 $DIR/$tdir/dir
2465         touch $DIR/$tdir/dir/f
2466         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2467         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2468         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2469         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2470         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2471 }
2472 run_test 31i "cross directory link under parent==============="
2473
2474 test_31j() {
2475         test_mkdir -c1 -p $DIR/$tdir
2476         test_mkdir -c1 -p $DIR/$tdir/dir1
2477         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2478         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2479         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2480         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2481         return 0
2482 }
2483 run_test 31j "link for directory==============="
2484
2485 test_31k() {
2486         test_mkdir -c1 -p $DIR/$tdir
2487         touch $DIR/$tdir/s
2488         touch $DIR/$tdir/exist
2489         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2490         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2491         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2492         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2493         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2494         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2495         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2496         return 0
2497 }
2498 run_test 31k "link to file: the same, non-existing, dir==============="
2499
2500 test_31m() {
2501         mkdir $DIR/d31m
2502         touch $DIR/d31m/s
2503         mkdir $DIR/d31m2
2504         touch $DIR/d31m2/exist
2505         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2506         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2507         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2508         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2509         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2510         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2511         return 0
2512 }
2513 run_test 31m "link to file: the same, non-existing, dir==============="
2514
2515 test_31n() {
2516         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2517         nlink=$(stat --format=%h $DIR/$tfile)
2518         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2519         local fd=$(free_fd)
2520         local cmd="exec $fd<$DIR/$tfile"
2521         eval $cmd
2522         cmd="exec $fd<&-"
2523         trap "eval $cmd" EXIT
2524         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2525         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2526         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2527         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2528         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2529         eval $cmd
2530 }
2531 run_test 31n "check link count of unlinked file"
2532
2533 link_one() {
2534         local TEMPNAME=$(mktemp $1_XXXXXX)
2535         mlink $TEMPNAME $1 2> /dev/null &&
2536                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2537         munlink $TEMPNAME
2538 }
2539
2540 test_31o() { # LU-2901
2541         test_mkdir $DIR/$tdir
2542         for LOOP in $(seq 100); do
2543                 rm -f $DIR/$tdir/$tfile*
2544                 for THREAD in $(seq 8); do
2545                         link_one $DIR/$tdir/$tfile.$LOOP &
2546                 done
2547                 wait
2548                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2549                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2550                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2551                         break || true
2552         done
2553 }
2554 run_test 31o "duplicate hard links with same filename"
2555
2556 test_31p() {
2557         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2558
2559         test_mkdir $DIR/$tdir
2560         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2561         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2562
2563         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2564                 error "open unlink test1 failed"
2565         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2566                 error "open unlink test2 failed"
2567
2568         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2569                 error "test1 still exists"
2570         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2571                 error "test2 still exists"
2572 }
2573 run_test 31p "remove of open striped directory"
2574
2575 cleanup_test32_mount() {
2576         local rc=0
2577         trap 0
2578         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2579         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2580         losetup -d $loopdev || true
2581         rm -rf $DIR/$tdir
2582         return $rc
2583 }
2584
2585 test_32a() {
2586         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2587
2588         echo "== more mountpoints and symlinks ================="
2589         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2590         trap cleanup_test32_mount EXIT
2591         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2592         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2593                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2594         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2595                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2596         cleanup_test32_mount
2597 }
2598 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2599
2600 test_32b() {
2601         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2602
2603         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2604         trap cleanup_test32_mount EXIT
2605         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2606         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2607                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2608         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2609                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2610         cleanup_test32_mount
2611 }
2612 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2613
2614 test_32c() {
2615         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2616
2617         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2618         trap cleanup_test32_mount EXIT
2619         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2620         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2621                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2622         test_mkdir -p $DIR/$tdir/d2/test_dir
2623         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2624                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2625         cleanup_test32_mount
2626 }
2627 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2628
2629 test_32d() {
2630         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2631
2632         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2633         trap cleanup_test32_mount EXIT
2634         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2635         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2636                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2637         test_mkdir -p $DIR/$tdir/d2/test_dir
2638         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2639                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2640         cleanup_test32_mount
2641 }
2642 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2643
2644 test_32e() {
2645         rm -fr $DIR/$tdir
2646         test_mkdir -p $DIR/$tdir/tmp
2647         local tmp_dir=$DIR/$tdir/tmp
2648         ln -s $DIR/$tdir $tmp_dir/symlink11
2649         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2650         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2651         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2652 }
2653 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2654
2655 test_32f() {
2656         rm -fr $DIR/$tdir
2657         test_mkdir -p $DIR/$tdir/tmp
2658         local tmp_dir=$DIR/$tdir/tmp
2659         ln -s $DIR/$tdir $tmp_dir/symlink11
2660         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2661         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2662         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2663 }
2664 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2665
2666 test_32g() {
2667         local tmp_dir=$DIR/$tdir/tmp
2668         test_mkdir -p $tmp_dir
2669         test_mkdir $DIR/${tdir}2
2670         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2671         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2672         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2673         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2674         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2675         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2676 }
2677 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2678
2679 test_32h() {
2680         rm -fr $DIR/$tdir $DIR/${tdir}2
2681         tmp_dir=$DIR/$tdir/tmp
2682         test_mkdir -p $tmp_dir
2683         test_mkdir $DIR/${tdir}2
2684         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2685         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2686         ls $tmp_dir/symlink12 || error "listing symlink12"
2687         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2688 }
2689 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2690
2691 test_32i() {
2692         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2693
2694         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2695         trap cleanup_test32_mount EXIT
2696         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2697         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2698                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2699         touch $DIR/$tdir/test_file
2700         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2701                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2702         cleanup_test32_mount
2703 }
2704 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2705
2706 test_32j() {
2707         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2708
2709         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2710         trap cleanup_test32_mount EXIT
2711         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2712         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2713                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2714         touch $DIR/$tdir/test_file
2715         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2716                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2717         cleanup_test32_mount
2718 }
2719 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2720
2721 test_32k() {
2722         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2723
2724         rm -fr $DIR/$tdir
2725         trap cleanup_test32_mount EXIT
2726         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2727         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2728                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2729         test_mkdir -p $DIR/$tdir/d2
2730         touch $DIR/$tdir/d2/test_file || error "touch failed"
2731         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2732                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2733         cleanup_test32_mount
2734 }
2735 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2736
2737 test_32l() {
2738         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2739
2740         rm -fr $DIR/$tdir
2741         trap cleanup_test32_mount EXIT
2742         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2743         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2744                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2745         test_mkdir -p $DIR/$tdir/d2
2746         touch $DIR/$tdir/d2/test_file || error "touch failed"
2747         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2748                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2749         cleanup_test32_mount
2750 }
2751 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2752
2753 test_32m() {
2754         rm -fr $DIR/d32m
2755         test_mkdir -p $DIR/d32m/tmp
2756         TMP_DIR=$DIR/d32m/tmp
2757         ln -s $DIR $TMP_DIR/symlink11
2758         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2759         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2760                 error "symlink11 not a link"
2761         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2762                 error "symlink01 not a link"
2763 }
2764 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2765
2766 test_32n() {
2767         rm -fr $DIR/d32n
2768         test_mkdir -p $DIR/d32n/tmp
2769         TMP_DIR=$DIR/d32n/tmp
2770         ln -s $DIR $TMP_DIR/symlink11
2771         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2772         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2773         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2774 }
2775 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2776
2777 test_32o() {
2778         touch $DIR/$tfile
2779         test_mkdir -p $DIR/d32o/tmp
2780         TMP_DIR=$DIR/d32o/tmp
2781         ln -s $DIR/$tfile $TMP_DIR/symlink12
2782         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2783         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2784                 error "symlink12 not a link"
2785         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2786         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2787                 error "$DIR/d32o/tmp/symlink12 not file type"
2788         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2789                 error "$DIR/d32o/symlink02 not file type"
2790 }
2791 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2792
2793 test_32p() {
2794         log 32p_1
2795         rm -fr $DIR/d32p
2796         log 32p_2
2797         rm -f $DIR/$tfile
2798         log 32p_3
2799         touch $DIR/$tfile
2800         log 32p_4
2801         test_mkdir -p $DIR/d32p/tmp
2802         log 32p_5
2803         TMP_DIR=$DIR/d32p/tmp
2804         log 32p_6
2805         ln -s $DIR/$tfile $TMP_DIR/symlink12
2806         log 32p_7
2807         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2808         log 32p_8
2809         cat $DIR/d32p/tmp/symlink12 ||
2810                 error "Can't open $DIR/d32p/tmp/symlink12"
2811         log 32p_9
2812         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2813         log 32p_10
2814 }
2815 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2816
2817 test_32q() {
2818         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2819
2820         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2821         trap cleanup_test32_mount EXIT
2822         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2823         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2824         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2825                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2826         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2827         cleanup_test32_mount
2828 }
2829 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2830
2831 test_32r() {
2832         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2833
2834         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2835         trap cleanup_test32_mount EXIT
2836         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2837         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2838         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2839                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2840         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2841         cleanup_test32_mount
2842 }
2843 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2844
2845 test_33aa() {
2846         rm -f $DIR/$tfile
2847         touch $DIR/$tfile
2848         chmod 444 $DIR/$tfile
2849         chown $RUNAS_ID $DIR/$tfile
2850         log 33_1
2851         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2852         log 33_2
2853 }
2854 run_test 33aa "write file with mode 444 (should return error)"
2855
2856 test_33a() {
2857         rm -fr $DIR/$tdir
2858         test_mkdir $DIR/$tdir
2859         chown $RUNAS_ID $DIR/$tdir
2860         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2861                 error "$RUNAS create $tdir/$tfile failed"
2862         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2863                 error "open RDWR" || true
2864 }
2865 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2866
2867 test_33b() {
2868         rm -fr $DIR/$tdir
2869         test_mkdir $DIR/$tdir
2870         chown $RUNAS_ID $DIR/$tdir
2871         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2872 }
2873 run_test 33b "test open file with malformed flags (No panic)"
2874
2875 test_33c() {
2876         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2877         remote_ost_nodsh && skip "remote OST with nodsh"
2878
2879         local ostnum
2880         local ostname
2881         local write_bytes
2882         local all_zeros
2883
2884         all_zeros=:
2885         rm -fr $DIR/$tdir
2886         test_mkdir $DIR/$tdir
2887         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2888
2889         sync
2890         for ostnum in $(seq $OSTCOUNT); do
2891                 # test-framework's OST numbering is one-based, while Lustre's
2892                 # is zero-based
2893                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2894                 # Parsing llobdstat's output sucks; we could grep the /proc
2895                 # path, but that's likely to not be as portable as using the
2896                 # llobdstat utility.  So we parse lctl output instead.
2897                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2898                         obdfilter/$ostname/stats |
2899                         awk '/^write_bytes/ {print $7}' )
2900                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2901                 if (( ${write_bytes:-0} > 0 ))
2902                 then
2903                         all_zeros=false
2904                         break;
2905                 fi
2906         done
2907
2908         $all_zeros || return 0
2909
2910         # Write four bytes
2911         echo foo > $DIR/$tdir/bar
2912         # Really write them
2913         sync
2914
2915         # Total up write_bytes after writing.  We'd better find non-zeros.
2916         for ostnum in $(seq $OSTCOUNT); do
2917                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2918                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2919                         obdfilter/$ostname/stats |
2920                         awk '/^write_bytes/ {print $7}' )
2921                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2922                 if (( ${write_bytes:-0} > 0 ))
2923                 then
2924                         all_zeros=false
2925                         break;
2926                 fi
2927         done
2928
2929         if $all_zeros
2930         then
2931                 for ostnum in $(seq $OSTCOUNT); do
2932                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2933                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2934                         do_facet ost$ostnum lctl get_param -n \
2935                                 obdfilter/$ostname/stats
2936                 done
2937                 error "OST not keeping write_bytes stats (b22312)"
2938         fi
2939 }
2940 run_test 33c "test llobdstat and write_bytes"
2941
2942 test_33d() {
2943         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2944         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2945
2946         local MDTIDX=1
2947         local remote_dir=$DIR/$tdir/remote_dir
2948
2949         test_mkdir $DIR/$tdir
2950         $LFS mkdir -i $MDTIDX $remote_dir ||
2951                 error "create remote directory failed"
2952
2953         touch $remote_dir/$tfile
2954         chmod 444 $remote_dir/$tfile
2955         chown $RUNAS_ID $remote_dir/$tfile
2956
2957         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2958
2959         chown $RUNAS_ID $remote_dir
2960         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2961                                         error "create" || true
2962         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2963                                     error "open RDWR" || true
2964         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2965 }
2966 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2967
2968 test_33e() {
2969         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2970
2971         mkdir $DIR/$tdir
2972
2973         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2974         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2975         mkdir $DIR/$tdir/local_dir
2976
2977         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2978         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2979         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2980
2981         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2982                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2983
2984         rmdir $DIR/$tdir/* || error "rmdir failed"
2985
2986         umask 777
2987         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2988         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2989         mkdir $DIR/$tdir/local_dir
2990
2991         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2992         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2993         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2994
2995         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2996                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2997
2998         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2999
3000         umask 000
3001         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3002         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3003         mkdir $DIR/$tdir/local_dir
3004
3005         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3006         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3007         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3008
3009         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3010                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3011 }
3012 run_test 33e "mkdir and striped directory should have same mode"
3013
3014 cleanup_33f() {
3015         trap 0
3016         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3017 }
3018
3019 test_33f() {
3020         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3021         remote_mds_nodsh && skip "remote MDS with nodsh"
3022
3023         mkdir $DIR/$tdir
3024         chmod go+rwx $DIR/$tdir
3025         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3026         trap cleanup_33f EXIT
3027
3028         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3029                 error "cannot create striped directory"
3030
3031         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3032                 error "cannot create files in striped directory"
3033
3034         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3035                 error "cannot remove files in striped directory"
3036
3037         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3038                 error "cannot remove striped directory"
3039
3040         cleanup_33f
3041 }
3042 run_test 33f "nonroot user can create, access, and remove a striped directory"
3043
3044 test_33g() {
3045         mkdir -p $DIR/$tdir/dir2
3046
3047         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3048         echo $err
3049         [[ $err =~ "exists" ]] || error "Not exists error"
3050 }
3051 run_test 33g "nonroot user create already existing root created file"
3052
3053 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3054 test_34a() {
3055         rm -f $DIR/f34
3056         $MCREATE $DIR/f34 || error "mcreate failed"
3057         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3058                 error "getstripe failed"
3059         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3060         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3061                 error "getstripe failed"
3062         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3063                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3064 }
3065 run_test 34a "truncate file that has not been opened ==========="
3066
3067 test_34b() {
3068         [ ! -f $DIR/f34 ] && test_34a
3069         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3070                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3071         $OPENFILE -f O_RDONLY $DIR/f34
3072         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3073                 error "getstripe failed"
3074         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3075                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3076 }
3077 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3078
3079 test_34c() {
3080         [ ! -f $DIR/f34 ] && test_34a
3081         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3082                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3083         $OPENFILE -f O_RDWR $DIR/f34
3084         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3085         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3086                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3087 }
3088 run_test 34c "O_RDWR opening file-with-size works =============="
3089
3090 test_34d() {
3091         [ ! -f $DIR/f34 ] && test_34a
3092         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3093                 error "dd failed"
3094         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3095                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3096         rm $DIR/f34
3097 }
3098 run_test 34d "write to sparse file ============================="
3099
3100 test_34e() {
3101         rm -f $DIR/f34e
3102         $MCREATE $DIR/f34e || error "mcreate failed"
3103         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3104         $CHECKSTAT -s 1000 $DIR/f34e ||
3105                 error "Size of $DIR/f34e not equal to 1000 bytes"
3106         $OPENFILE -f O_RDWR $DIR/f34e
3107         $CHECKSTAT -s 1000 $DIR/f34e ||
3108                 error "Size of $DIR/f34e not equal to 1000 bytes"
3109 }
3110 run_test 34e "create objects, some with size and some without =="
3111
3112 test_34f() { # bug 6242, 6243
3113         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3114
3115         SIZE34F=48000
3116         rm -f $DIR/f34f
3117         $MCREATE $DIR/f34f || error "mcreate failed"
3118         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3119         dd if=$DIR/f34f of=$TMP/f34f
3120         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3121         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3122         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3123         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3124         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3125 }
3126 run_test 34f "read from a file with no objects until EOF ======="
3127
3128 test_34g() {
3129         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3130
3131         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3132                 error "dd failed"
3133         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3134         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3135                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3136         cancel_lru_locks osc
3137         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3138                 error "wrong size after lock cancel"
3139
3140         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3141         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3142                 error "expanding truncate failed"
3143         cancel_lru_locks osc
3144         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3145                 error "wrong expanded size after lock cancel"
3146 }
3147 run_test 34g "truncate long file ==============================="
3148
3149 test_34h() {
3150         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3151
3152         local gid=10
3153         local sz=1000
3154
3155         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3156         sync # Flush the cache so that multiop below does not block on cache
3157              # flush when getting the group lock
3158         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3159         MULTIPID=$!
3160
3161         # Since just timed wait is not good enough, let's do a sync write
3162         # that way we are sure enough time for a roundtrip + processing
3163         # passed + 2 seconds of extra margin.
3164         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
3165         rm $DIR/${tfile}-1
3166         sleep 2
3167
3168         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3169                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3170                 kill -9 $MULTIPID
3171         fi
3172         wait $MULTIPID
3173         local nsz=`stat -c %s $DIR/$tfile`
3174         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3175 }
3176 run_test 34h "ftruncate file under grouplock should not block"
3177
3178 test_35a() {
3179         cp /bin/sh $DIR/f35a
3180         chmod 444 $DIR/f35a
3181         chown $RUNAS_ID $DIR/f35a
3182         $RUNAS $DIR/f35a && error || true
3183         rm $DIR/f35a
3184 }
3185 run_test 35a "exec file with mode 444 (should return and not leak)"
3186
3187 test_36a() {
3188         rm -f $DIR/f36
3189         utime $DIR/f36 || error "utime failed for MDS"
3190 }
3191 run_test 36a "MDS utime check (mknod, utime)"
3192
3193 test_36b() {
3194         echo "" > $DIR/f36
3195         utime $DIR/f36 || error "utime failed for OST"
3196 }
3197 run_test 36b "OST utime check (open, utime)"
3198
3199 test_36c() {
3200         rm -f $DIR/d36/f36
3201         test_mkdir $DIR/d36
3202         chown $RUNAS_ID $DIR/d36
3203         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3204 }
3205 run_test 36c "non-root MDS utime check (mknod, utime)"
3206
3207 test_36d() {
3208         [ ! -d $DIR/d36 ] && test_36c
3209         echo "" > $DIR/d36/f36
3210         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3211 }
3212 run_test 36d "non-root OST utime check (open, utime)"
3213
3214 test_36e() {
3215         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3216
3217         test_mkdir $DIR/$tdir
3218         touch $DIR/$tdir/$tfile
3219         $RUNAS utime $DIR/$tdir/$tfile &&
3220                 error "utime worked, expected failure" || true
3221 }
3222 run_test 36e "utime on non-owned file (should return error)"
3223
3224 subr_36fh() {
3225         local fl="$1"
3226         local LANG_SAVE=$LANG
3227         local LC_LANG_SAVE=$LC_LANG
3228         export LANG=C LC_LANG=C # for date language
3229
3230         DATESTR="Dec 20  2000"
3231         test_mkdir $DIR/$tdir
3232         lctl set_param fail_loc=$fl
3233         date; date +%s
3234         cp /etc/hosts $DIR/$tdir/$tfile
3235         sync & # write RPC generated with "current" inode timestamp, but delayed
3236         sleep 1
3237         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3238         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3239         cancel_lru_locks osc
3240         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3241         date; date +%s
3242         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3243                 echo "BEFORE: $LS_BEFORE" && \
3244                 echo "AFTER : $LS_AFTER" && \
3245                 echo "WANT  : $DATESTR" && \
3246                 error "$DIR/$tdir/$tfile timestamps changed" || true
3247
3248         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3249 }
3250
3251 test_36f() {
3252         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3253
3254         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3255         subr_36fh "0x80000214"
3256 }
3257 run_test 36f "utime on file racing with OST BRW write =========="
3258
3259 test_36g() {
3260         remote_ost_nodsh && skip "remote OST with nodsh"
3261         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3262
3263         local fmd_max_age
3264         local fmd_before
3265         local fmd_after
3266
3267         test_mkdir $DIR/$tdir
3268         fmd_max_age=$(do_facet ost1 \
3269                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3270                 head -n 1")
3271
3272         fmd_before=$(do_facet ost1 \
3273                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3274         touch $DIR/$tdir/$tfile
3275         sleep $((fmd_max_age + 12))
3276         fmd_after=$(do_facet ost1 \
3277                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3278
3279         echo "fmd_before: $fmd_before"
3280         echo "fmd_after: $fmd_after"
3281         [[ $fmd_after -gt $fmd_before ]] &&
3282                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3283                 error "fmd didn't expire after ping" || true
3284 }
3285 run_test 36g "filter mod data cache expiry ====================="
3286
3287 test_36h() {
3288         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3289
3290         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3291         subr_36fh "0x80000227"
3292 }
3293 run_test 36h "utime on file racing with OST BRW write =========="
3294
3295 test_36i() {
3296         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3297
3298         test_mkdir $DIR/$tdir
3299         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3300
3301         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3302         local new_mtime=$((mtime + 200))
3303
3304         #change Modify time of striped dir
3305         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3306                         error "change mtime failed"
3307
3308         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3309
3310         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3311 }
3312 run_test 36i "change mtime on striped directory"
3313
3314 # test_37 - duplicate with tests 32q 32r
3315
3316 test_38() {
3317         local file=$DIR/$tfile
3318         touch $file
3319         openfile -f O_DIRECTORY $file
3320         local RC=$?
3321         local ENOTDIR=20
3322         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3323         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3324 }
3325 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3326
3327 test_39a() { # was test_39
3328         touch $DIR/$tfile
3329         touch $DIR/${tfile}2
3330 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3331 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3332 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3333         sleep 2
3334         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3335         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3336                 echo "mtime"
3337                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3338                 echo "atime"
3339                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3340                 echo "ctime"
3341                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3342                 error "O_TRUNC didn't change timestamps"
3343         fi
3344 }
3345 run_test 39a "mtime changed on create"
3346
3347 test_39b() {
3348         test_mkdir -c1 $DIR/$tdir
3349         cp -p /etc/passwd $DIR/$tdir/fopen
3350         cp -p /etc/passwd $DIR/$tdir/flink
3351         cp -p /etc/passwd $DIR/$tdir/funlink
3352         cp -p /etc/passwd $DIR/$tdir/frename
3353         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3354
3355         sleep 1
3356         echo "aaaaaa" >> $DIR/$tdir/fopen
3357         echo "aaaaaa" >> $DIR/$tdir/flink
3358         echo "aaaaaa" >> $DIR/$tdir/funlink
3359         echo "aaaaaa" >> $DIR/$tdir/frename
3360
3361         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3362         local link_new=`stat -c %Y $DIR/$tdir/flink`
3363         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3364         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3365
3366         cat $DIR/$tdir/fopen > /dev/null
3367         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3368         rm -f $DIR/$tdir/funlink2
3369         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3370
3371         for (( i=0; i < 2; i++ )) ; do
3372                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3373                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3374                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3375                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3376
3377                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3378                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3379                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3380                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3381
3382                 cancel_lru_locks osc
3383                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3384         done
3385 }
3386 run_test 39b "mtime change on open, link, unlink, rename  ======"
3387
3388 # this should be set to past
3389 TEST_39_MTIME=`date -d "1 year ago" +%s`
3390
3391 # bug 11063
3392 test_39c() {
3393         touch $DIR1/$tfile
3394         sleep 2
3395         local mtime0=`stat -c %Y $DIR1/$tfile`
3396
3397         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3398         local mtime1=`stat -c %Y $DIR1/$tfile`
3399         [ "$mtime1" = $TEST_39_MTIME ] || \
3400                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3401
3402         local d1=`date +%s`
3403         echo hello >> $DIR1/$tfile
3404         local d2=`date +%s`
3405         local mtime2=`stat -c %Y $DIR1/$tfile`
3406         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3407                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3408
3409         mv $DIR1/$tfile $DIR1/$tfile-1
3410
3411         for (( i=0; i < 2; i++ )) ; do
3412                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3413                 [ "$mtime2" = "$mtime3" ] || \
3414                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3415
3416                 cancel_lru_locks osc
3417                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3418         done
3419 }
3420 run_test 39c "mtime change on rename ==========================="
3421
3422 # bug 21114
3423 test_39d() {
3424         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3425
3426         touch $DIR1/$tfile
3427         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3428
3429         for (( i=0; i < 2; i++ )) ; do
3430                 local mtime=`stat -c %Y $DIR1/$tfile`
3431                 [ $mtime = $TEST_39_MTIME ] || \
3432                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3433
3434                 cancel_lru_locks osc
3435                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3436         done
3437 }
3438 run_test 39d "create, utime, stat =============================="
3439
3440 # bug 21114
3441 test_39e() {
3442         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3443
3444         touch $DIR1/$tfile
3445         local mtime1=`stat -c %Y $DIR1/$tfile`
3446
3447         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3448
3449         for (( i=0; i < 2; i++ )) ; do
3450                 local mtime2=`stat -c %Y $DIR1/$tfile`
3451                 [ $mtime2 = $TEST_39_MTIME ] || \
3452                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3453
3454                 cancel_lru_locks osc
3455                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3456         done
3457 }
3458 run_test 39e "create, stat, utime, stat ========================"
3459
3460 # bug 21114
3461 test_39f() {
3462         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3463
3464         touch $DIR1/$tfile
3465         mtime1=`stat -c %Y $DIR1/$tfile`
3466
3467         sleep 2
3468         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3469
3470         for (( i=0; i < 2; i++ )) ; do
3471                 local mtime2=`stat -c %Y $DIR1/$tfile`
3472                 [ $mtime2 = $TEST_39_MTIME ] || \
3473                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3474
3475                 cancel_lru_locks osc
3476                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3477         done
3478 }
3479 run_test 39f "create, stat, sleep, utime, stat ================="
3480
3481 # bug 11063
3482 test_39g() {
3483         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3484
3485         echo hello >> $DIR1/$tfile
3486         local mtime1=`stat -c %Y $DIR1/$tfile`
3487
3488         sleep 2
3489         chmod o+r $DIR1/$tfile
3490
3491         for (( i=0; i < 2; i++ )) ; do
3492                 local mtime2=`stat -c %Y $DIR1/$tfile`
3493                 [ "$mtime1" = "$mtime2" ] || \
3494                         error "lost mtime: $mtime2, should be $mtime1"
3495
3496                 cancel_lru_locks osc
3497                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3498         done
3499 }
3500 run_test 39g "write, chmod, stat ==============================="
3501
3502 # bug 11063
3503 test_39h() {
3504         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3505
3506         touch $DIR1/$tfile
3507         sleep 1
3508
3509         local d1=`date`
3510         echo hello >> $DIR1/$tfile
3511         local mtime1=`stat -c %Y $DIR1/$tfile`
3512
3513         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3514         local d2=`date`
3515         if [ "$d1" != "$d2" ]; then
3516                 echo "write and touch not within one second"
3517         else
3518                 for (( i=0; i < 2; i++ )) ; do
3519                         local mtime2=`stat -c %Y $DIR1/$tfile`
3520                         [ "$mtime2" = $TEST_39_MTIME ] || \
3521                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3522
3523                         cancel_lru_locks osc
3524                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3525                 done
3526         fi
3527 }
3528 run_test 39h "write, utime within one second, stat ============="
3529
3530 test_39i() {
3531         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3532
3533         touch $DIR1/$tfile
3534         sleep 1
3535
3536         echo hello >> $DIR1/$tfile
3537         local mtime1=`stat -c %Y $DIR1/$tfile`
3538
3539         mv $DIR1/$tfile $DIR1/$tfile-1
3540
3541         for (( i=0; i < 2; i++ )) ; do
3542                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3543
3544                 [ "$mtime1" = "$mtime2" ] || \
3545                         error "lost mtime: $mtime2, should be $mtime1"
3546
3547                 cancel_lru_locks osc
3548                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3549         done
3550 }
3551 run_test 39i "write, rename, stat =============================="
3552
3553 test_39j() {
3554         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3555
3556         start_full_debug_logging
3557         touch $DIR1/$tfile
3558         sleep 1
3559
3560         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3561         lctl set_param fail_loc=0x80000412
3562         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3563                 error "multiop failed"
3564         local multipid=$!
3565         local mtime1=`stat -c %Y $DIR1/$tfile`
3566
3567         mv $DIR1/$tfile $DIR1/$tfile-1
3568
3569         kill -USR1 $multipid
3570         wait $multipid || error "multiop close failed"
3571
3572         for (( i=0; i < 2; i++ )) ; do
3573                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3574                 [ "$mtime1" = "$mtime2" ] ||
3575                         error "mtime is lost on close: $mtime2, " \
3576                               "should be $mtime1"
3577
3578                 cancel_lru_locks osc
3579                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3580         done
3581         lctl set_param fail_loc=0
3582         stop_full_debug_logging
3583 }
3584 run_test 39j "write, rename, close, stat ======================="
3585
3586 test_39k() {
3587         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3588
3589         touch $DIR1/$tfile
3590         sleep 1
3591
3592         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3593         local multipid=$!
3594         local mtime1=`stat -c %Y $DIR1/$tfile`
3595
3596         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3597
3598         kill -USR1 $multipid
3599         wait $multipid || error "multiop close failed"
3600
3601         for (( i=0; i < 2; i++ )) ; do
3602                 local mtime2=`stat -c %Y $DIR1/$tfile`
3603
3604                 [ "$mtime2" = $TEST_39_MTIME ] || \
3605                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3606
3607                 cancel_lru_locks osc
3608                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3609         done
3610 }
3611 run_test 39k "write, utime, close, stat ========================"
3612
3613 # this should be set to future
3614 TEST_39_ATIME=`date -d "1 year" +%s`
3615
3616 test_39l() {
3617         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3618         remote_mds_nodsh && skip "remote MDS with nodsh"
3619
3620         local atime_diff=$(do_facet $SINGLEMDS \
3621                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3622         rm -rf $DIR/$tdir
3623         mkdir -p $DIR/$tdir
3624
3625         # test setting directory atime to future
3626         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3627         local atime=$(stat -c %X $DIR/$tdir)
3628         [ "$atime" = $TEST_39_ATIME ] ||
3629                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3630
3631         # test setting directory atime from future to now
3632         local now=$(date +%s)
3633         touch -a -d @$now $DIR/$tdir
3634
3635         atime=$(stat -c %X $DIR/$tdir)
3636         [ "$atime" -eq "$now"  ] ||
3637                 error "atime is not updated from future: $atime, $now"
3638
3639         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3640         sleep 3
3641
3642         # test setting directory atime when now > dir atime + atime_diff
3643         local d1=$(date +%s)
3644         ls $DIR/$tdir
3645         local d2=$(date +%s)
3646         cancel_lru_locks mdc
3647         atime=$(stat -c %X $DIR/$tdir)
3648         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3649                 error "atime is not updated  : $atime, should be $d2"
3650
3651         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3652         sleep 3
3653
3654         # test not setting directory atime when now < dir atime + atime_diff
3655         ls $DIR/$tdir
3656         cancel_lru_locks mdc
3657         atime=$(stat -c %X $DIR/$tdir)
3658         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3659                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3660
3661         do_facet $SINGLEMDS \
3662                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3663 }
3664 run_test 39l "directory atime update ==========================="
3665
3666 test_39m() {
3667         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3668
3669         touch $DIR1/$tfile
3670         sleep 2
3671         local far_past_mtime=$(date -d "May 29 1953" +%s)
3672         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3673
3674         touch -m -d @$far_past_mtime $DIR1/$tfile
3675         touch -a -d @$far_past_atime $DIR1/$tfile
3676
3677         for (( i=0; i < 2; i++ )) ; do
3678                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3679                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3680                         error "atime or mtime set incorrectly"
3681
3682                 cancel_lru_locks osc
3683                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3684         done
3685 }
3686 run_test 39m "test atime and mtime before 1970"
3687
3688 test_39n() { # LU-3832
3689         remote_mds_nodsh && skip "remote MDS with nodsh"
3690
3691         local atime_diff=$(do_facet $SINGLEMDS \
3692                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3693         local atime0
3694         local atime1
3695         local atime2
3696
3697         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3698
3699         rm -rf $DIR/$tfile
3700         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3701         atime0=$(stat -c %X $DIR/$tfile)
3702
3703         sleep 5
3704         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3705         atime1=$(stat -c %X $DIR/$tfile)
3706
3707         sleep 5
3708         cancel_lru_locks mdc
3709         cancel_lru_locks osc
3710         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3711         atime2=$(stat -c %X $DIR/$tfile)
3712
3713         do_facet $SINGLEMDS \
3714                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3715
3716         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3717         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3718 }
3719 run_test 39n "check that O_NOATIME is honored"
3720
3721 test_39o() {
3722         TESTDIR=$DIR/$tdir/$tfile
3723         [ -e $TESTDIR ] && rm -rf $TESTDIR
3724         mkdir -p $TESTDIR
3725         cd $TESTDIR
3726         links1=2
3727         ls
3728         mkdir a b
3729         ls
3730         links2=$(stat -c %h .)
3731         [ $(($links1 + 2)) != $links2 ] &&
3732                 error "wrong links count $(($links1 + 2)) != $links2"
3733         rmdir b
3734         links3=$(stat -c %h .)
3735         [ $(($links1 + 1)) != $links3 ] &&
3736                 error "wrong links count $links1 != $links3"
3737         return 0
3738 }
3739 run_test 39o "directory cached attributes updated after create"
3740
3741 test_39p() {
3742         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3743
3744         local MDTIDX=1
3745         TESTDIR=$DIR/$tdir/$tdir
3746         [ -e $TESTDIR ] && rm -rf $TESTDIR
3747         test_mkdir -p $TESTDIR
3748         cd $TESTDIR
3749         links1=2
3750         ls
3751         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3752         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3753         ls
3754         links2=$(stat -c %h .)
3755         [ $(($links1 + 2)) != $links2 ] &&
3756                 error "wrong links count $(($links1 + 2)) != $links2"
3757         rmdir remote_dir2
3758         links3=$(stat -c %h .)
3759         [ $(($links1 + 1)) != $links3 ] &&
3760                 error "wrong links count $links1 != $links3"
3761         return 0
3762 }
3763 run_test 39p "remote directory cached attributes updated after create ========"
3764
3765
3766 test_39q() { # LU-8041
3767         local testdir=$DIR/$tdir
3768         mkdir -p $testdir
3769         multiop_bg_pause $testdir D_c || error "multiop failed"
3770         local multipid=$!
3771         cancel_lru_locks mdc
3772         kill -USR1 $multipid
3773         local atime=$(stat -c %X $testdir)
3774         [ "$atime" -ne 0 ] || error "atime is zero"
3775 }
3776 run_test 39q "close won't zero out atime"
3777
3778 test_40() {
3779         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3780         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3781                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3782         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3783                 error "$tfile is not 4096 bytes in size"
3784 }
3785 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3786
3787 test_41() {
3788         # bug 1553
3789         small_write $DIR/f41 18
3790 }
3791 run_test 41 "test small file write + fstat ====================="
3792
3793 count_ost_writes() {
3794         lctl get_param -n ${OSC}.*.stats |
3795                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3796                         END { printf("%0.0f", writes) }'
3797 }
3798
3799 # decent default
3800 WRITEBACK_SAVE=500
3801 DIRTY_RATIO_SAVE=40
3802 MAX_DIRTY_RATIO=50
3803 BG_DIRTY_RATIO_SAVE=10
3804 MAX_BG_DIRTY_RATIO=25
3805
3806 start_writeback() {
3807         trap 0
3808         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3809         # dirty_ratio, dirty_background_ratio
3810         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3811                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3812                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3813                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3814         else
3815                 # if file not here, we are a 2.4 kernel
3816                 kill -CONT `pidof kupdated`
3817         fi
3818 }
3819
3820 stop_writeback() {
3821         # setup the trap first, so someone cannot exit the test at the
3822         # exact wrong time and mess up a machine
3823         trap start_writeback EXIT
3824         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3825         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3826                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3827                 sysctl -w vm.dirty_writeback_centisecs=0
3828                 sysctl -w vm.dirty_writeback_centisecs=0
3829                 # save and increase /proc/sys/vm/dirty_ratio
3830                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3831                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3832                 # save and increase /proc/sys/vm/dirty_background_ratio
3833                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3834                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3835         else
3836                 # if file not here, we are a 2.4 kernel
3837                 kill -STOP `pidof kupdated`
3838         fi
3839 }
3840
3841 # ensure that all stripes have some grant before we test client-side cache
3842 setup_test42() {
3843         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3844                 dd if=/dev/zero of=$i bs=4k count=1
3845                 rm $i
3846         done
3847 }
3848
3849 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3850 # file truncation, and file removal.
3851 test_42a() {
3852         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3853
3854         setup_test42
3855         cancel_lru_locks $OSC
3856         stop_writeback
3857         sync; sleep 1; sync # just to be safe
3858         BEFOREWRITES=`count_ost_writes`
3859         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3860         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3861         AFTERWRITES=`count_ost_writes`
3862         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3863                 error "$BEFOREWRITES < $AFTERWRITES"
3864         start_writeback
3865 }
3866 run_test 42a "ensure that we don't flush on close"
3867
3868 test_42b() {
3869         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3870
3871         setup_test42
3872         cancel_lru_locks $OSC
3873         stop_writeback
3874         sync
3875         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3876         BEFOREWRITES=$(count_ost_writes)
3877         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3878         AFTERWRITES=$(count_ost_writes)
3879         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3880                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3881         fi
3882         BEFOREWRITES=$(count_ost_writes)
3883         sync || error "sync: $?"
3884         AFTERWRITES=$(count_ost_writes)
3885         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3886                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3887         fi
3888         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3889         start_writeback
3890         return 0
3891 }
3892 run_test 42b "test destroy of file with cached dirty data ======"
3893
3894 # if these tests just want to test the effect of truncation,
3895 # they have to be very careful.  consider:
3896 # - the first open gets a {0,EOF}PR lock
3897 # - the first write conflicts and gets a {0, count-1}PW
3898 # - the rest of the writes are under {count,EOF}PW
3899 # - the open for truncate tries to match a {0,EOF}PR
3900 #   for the filesize and cancels the PWs.
3901 # any number of fixes (don't get {0,EOF} on open, match
3902 # composite locks, do smarter file size management) fix
3903 # this, but for now we want these tests to verify that
3904 # the cancellation with truncate intent works, so we
3905 # start the file with a full-file pw lock to match against
3906 # until the truncate.
3907 trunc_test() {
3908         test=$1
3909         file=$DIR/$test
3910         offset=$2
3911         cancel_lru_locks $OSC
3912         stop_writeback
3913         # prime the file with 0,EOF PW to match
3914         touch $file
3915         $TRUNCATE $file 0
3916         sync; sync
3917         # now the real test..
3918         dd if=/dev/zero of=$file bs=1024 count=100
3919         BEFOREWRITES=`count_ost_writes`
3920         $TRUNCATE $file $offset
3921         cancel_lru_locks $OSC
3922         AFTERWRITES=`count_ost_writes`
3923         start_writeback
3924 }
3925
3926 test_42c() {
3927         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3928
3929         trunc_test 42c 1024
3930         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3931                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3932         rm $file
3933 }
3934 run_test 42c "test partial truncate of file with cached dirty data"
3935
3936 test_42d() {
3937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3938
3939         trunc_test 42d 0
3940         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3941                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3942         rm $file
3943 }
3944 run_test 42d "test complete truncate of file with cached dirty data"
3945
3946 test_42e() { # bug22074
3947         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3948
3949         local TDIR=$DIR/${tdir}e
3950         local pagesz=$(page_size)
3951         local pages=16 # hardcoded 16 pages, don't change it.
3952         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3953         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3954         local max_dirty_mb
3955         local warmup_files
3956
3957         test_mkdir $DIR/${tdir}e
3958         $SETSTRIPE -c 1 $TDIR
3959         createmany -o $TDIR/f $files
3960
3961         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3962
3963         # we assume that with $OSTCOUNT files, at least one of them will
3964         # be allocated on OST0.
3965         warmup_files=$((OSTCOUNT * max_dirty_mb))
3966         createmany -o $TDIR/w $warmup_files
3967
3968         # write a large amount of data into one file and sync, to get good
3969         # avail_grant number from OST.
3970         for ((i=0; i<$warmup_files; i++)); do
3971                 idx=$($GETSTRIPE -i $TDIR/w$i)
3972                 [ $idx -ne 0 ] && continue
3973                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3974                 break
3975         done
3976         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3977         sync
3978         $LCTL get_param $proc_osc0/cur_dirty_bytes
3979         $LCTL get_param $proc_osc0/cur_grant_bytes
3980
3981         # create as much dirty pages as we can while not to trigger the actual
3982         # RPCs directly. but depends on the env, VFS may trigger flush during this
3983         # period, hopefully we are good.
3984         for ((i=0; i<$warmup_files; i++)); do
3985                 idx=$($GETSTRIPE -i $TDIR/w$i)
3986                 [ $idx -ne 0 ] && continue
3987                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3988         done
3989         $LCTL get_param $proc_osc0/cur_dirty_bytes
3990         $LCTL get_param $proc_osc0/cur_grant_bytes
3991
3992         # perform the real test
3993         $LCTL set_param $proc_osc0/rpc_stats 0
3994         for ((;i<$files; i++)); do
3995                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3996                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3997         done
3998         sync
3999         $LCTL get_param $proc_osc0/rpc_stats
4000
4001         local percent=0
4002         local have_ppr=false
4003         $LCTL get_param $proc_osc0/rpc_stats |
4004                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4005                         # skip lines until we are at the RPC histogram data
4006                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4007                         $have_ppr || continue
4008
4009                         # we only want the percent stat for < 16 pages
4010                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4011
4012                         percent=$((percent + WPCT))
4013                         if [[ $percent -gt 15 ]]; then
4014                                 error "less than 16-pages write RPCs" \
4015                                       "$percent% > 15%"
4016                                 break
4017                         fi
4018                 done
4019         rm -rf $TDIR
4020 }
4021 run_test 42e "verify sub-RPC writes are not done synchronously"
4022
4023 test_43A() { # was test_43
4024         test_mkdir $DIR/$tdir
4025         cp -p /bin/ls $DIR/$tdir/$tfile
4026         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4027         pid=$!
4028         # give multiop a chance to open
4029         sleep 1
4030
4031         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4032         kill -USR1 $pid
4033 }
4034 run_test 43A "execution of file opened for write should return -ETXTBSY"
4035
4036 test_43a() {
4037         test_mkdir $DIR/$tdir
4038         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4039                 cp -p multiop $DIR/$tdir/multiop
4040         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4041                 error "multiop open $TMP/$tfile.junk failed"
4042         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4043         MULTIOP_PID=$!
4044         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4045         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4046         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4047 }
4048 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4049
4050 test_43b() {
4051         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4052
4053         test_mkdir $DIR/$tdir
4054         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4055                 cp -p multiop $DIR/$tdir/multiop
4056         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4057                 error "multiop open $TMP/$tfile.junk failed"
4058         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4059         MULTIOP_PID=$!
4060         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4061         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4062         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4063 }
4064 run_test 43b "truncate of file being executed should return -ETXTBSY"
4065
4066 test_43c() {
4067         local testdir="$DIR/$tdir"
4068         test_mkdir $testdir
4069         cp $SHELL $testdir/
4070         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4071                 ( cd $testdir && md5sum -c )
4072 }
4073 run_test 43c "md5sum of copy into lustre"
4074
4075 test_44A() { # was test_44
4076         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4077
4078         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4079         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4080 }
4081 run_test 44A "zero length read from a sparse stripe"
4082
4083 test_44a() {
4084         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4085                 awk '{ print $2 }')
4086         [ -z "$nstripe" ] && skip "can't get stripe info"
4087         [[ $nstripe -gt $OSTCOUNT ]] &&
4088                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4089
4090         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4091                 awk '{ print $2 }')
4092         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4093                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4094                         awk '{ print $2 }')
4095         fi
4096
4097         OFFSETS="0 $((stride/2)) $((stride-1))"
4098         for offset in $OFFSETS; do
4099                 for i in $(seq 0 $((nstripe-1))); do
4100                         local GLOBALOFFSETS=""
4101                         # size in Bytes
4102                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4103                         local myfn=$DIR/d44a-$size
4104                         echo "--------writing $myfn at $size"
4105                         ll_sparseness_write $myfn $size ||
4106                                 error "ll_sparseness_write"
4107                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4108                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4109                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4110
4111                         for j in $(seq 0 $((nstripe-1))); do
4112                                 # size in Bytes
4113                                 size=$((((j + $nstripe )*$stride + $offset)))
4114                                 ll_sparseness_write $myfn $size ||
4115                                         error "ll_sparseness_write"
4116                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4117                         done
4118                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4119                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4120                         rm -f $myfn
4121                 done
4122         done
4123 }
4124 run_test 44a "test sparse pwrite ==============================="
4125
4126 dirty_osc_total() {
4127         tot=0
4128         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4129                 tot=$(($tot + $d))
4130         done
4131         echo $tot
4132 }
4133 do_dirty_record() {
4134         before=`dirty_osc_total`
4135         echo executing "\"$*\""
4136         eval $*
4137         after=`dirty_osc_total`
4138         echo before $before, after $after
4139 }
4140 test_45() {
4141         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4142
4143         f="$DIR/f45"
4144         # Obtain grants from OST if it supports it
4145         echo blah > ${f}_grant
4146         stop_writeback
4147         sync
4148         do_dirty_record "echo blah > $f"
4149         [[ $before -eq $after ]] && error "write wasn't cached"
4150         do_dirty_record "> $f"
4151         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4152         do_dirty_record "echo blah > $f"
4153         [[ $before -eq $after ]] && error "write wasn't cached"
4154         do_dirty_record "sync"
4155         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4156         do_dirty_record "echo blah > $f"
4157         [[ $before -eq $after ]] && error "write wasn't cached"
4158         do_dirty_record "cancel_lru_locks osc"
4159         [[ $before -gt $after ]] ||
4160                 error "lock cancellation didn't lower dirty count"
4161         start_writeback
4162 }
4163 run_test 45 "osc io page accounting ============================"
4164
4165 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4166 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4167 # objects offset and an assert hit when an rpc was built with 1023's mapped
4168 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4169 test_46() {
4170         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4171
4172         f="$DIR/f46"
4173         stop_writeback
4174         sync
4175         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4176         sync
4177         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
4178         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4179         sync
4180         start_writeback
4181 }
4182 run_test 46 "dirtying a previously written page ================"
4183
4184 # test_47 is removed "Device nodes check" is moved to test_28
4185
4186 test_48a() { # bug 2399
4187         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4188         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4189                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4190
4191         test_mkdir $DIR/$tdir
4192         cd $DIR/$tdir
4193         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4194         test_mkdir $DIR/$tdir
4195         touch foo || error "'touch foo' failed after recreating cwd"
4196         test_mkdir bar
4197         touch .foo || error "'touch .foo' failed after recreating cwd"
4198         test_mkdir .bar
4199         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4200         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4201         cd . || error "'cd .' failed after recreating cwd"
4202         mkdir . && error "'mkdir .' worked after recreating cwd"
4203         rmdir . && error "'rmdir .' worked after recreating cwd"
4204         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4205         cd .. || error "'cd ..' failed after recreating cwd"
4206 }
4207 run_test 48a "Access renamed working dir (should return errors)="
4208
4209 test_48b() { # bug 2399
4210         rm -rf $DIR/$tdir
4211         test_mkdir $DIR/$tdir
4212         cd $DIR/$tdir
4213         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4214         touch foo && error "'touch foo' worked after removing cwd"
4215         mkdir foo && error "'mkdir foo' worked after removing cwd"
4216         touch .foo && error "'touch .foo' worked after removing cwd"
4217         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4218         ls . > /dev/null && error "'ls .' worked after removing cwd"
4219         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4220         mkdir . && error "'mkdir .' worked after removing cwd"
4221         rmdir . && error "'rmdir .' worked after removing cwd"
4222         ln -s . foo && error "'ln -s .' worked after removing cwd"
4223         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4224 }
4225 run_test 48b "Access removed working dir (should return errors)="
4226
4227 test_48c() { # bug 2350
4228         #lctl set_param debug=-1
4229         #set -vx
4230         rm -rf $DIR/$tdir
4231         test_mkdir -p $DIR/$tdir/dir
4232         cd $DIR/$tdir/dir
4233         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4234         $TRACE touch foo && error "touch foo worked after removing cwd"
4235         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4236         touch .foo && error "touch .foo worked after removing cwd"
4237         mkdir .foo && error "mkdir .foo worked after removing cwd"
4238         $TRACE ls . && error "'ls .' worked after removing cwd"
4239         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4240         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4241         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4242         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4243         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4244 }
4245 run_test 48c "Access removed working subdir (should return errors)"
4246
4247 test_48d() { # bug 2350
4248         #lctl set_param debug=-1
4249         #set -vx
4250         rm -rf $DIR/$tdir
4251         test_mkdir -p $DIR/$tdir/dir
4252         cd $DIR/$tdir/dir
4253         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4254         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4255         $TRACE touch foo && error "'touch foo' worked after removing parent"
4256         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4257         touch .foo && error "'touch .foo' worked after removing parent"
4258         mkdir .foo && error "mkdir .foo worked after removing parent"
4259         $TRACE ls . && error "'ls .' worked after removing parent"
4260         $TRACE ls .. && error "'ls ..' worked after removing parent"
4261         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4262         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4263         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4264         true
4265 }
4266 run_test 48d "Access removed parent subdir (should return errors)"
4267
4268 test_48e() { # bug 4134
4269         #lctl set_param debug=-1
4270         #set -vx
4271         rm -rf $DIR/$tdir
4272         test_mkdir -p $DIR/$tdir/dir
4273         cd $DIR/$tdir/dir
4274         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4275         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4276         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4277         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4278         # On a buggy kernel addition of "touch foo" after cd .. will
4279         # produce kernel oops in lookup_hash_it
4280         touch ../foo && error "'cd ..' worked after recreate parent"
4281         cd $DIR
4282         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4283 }
4284 run_test 48e "Access to recreated parent subdir (should return errors)"
4285
4286 test_49() { # LU-1030
4287         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4288         remote_ost_nodsh && skip "remote OST with nodsh"
4289
4290         # get ost1 size - lustre-OST0000
4291         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4292                 awk '{ print $4 }')
4293         # write 800M at maximum
4294         [[ $ost1_size -lt 2 ]] && ost1_size=2
4295         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4296
4297         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4298         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4299         local dd_pid=$!
4300
4301         # change max_pages_per_rpc while writing the file
4302         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4303         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4304         # loop until dd process exits
4305         while ps ax -opid | grep -wq $dd_pid; do
4306                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4307                 sleep $((RANDOM % 5 + 1))
4308         done
4309         # restore original max_pages_per_rpc
4310         $LCTL set_param $osc1_mppc=$orig_mppc
4311         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4312 }
4313 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4314
4315 test_50() {
4316         # bug 1485
4317         test_mkdir $DIR/$tdir
4318         cd $DIR/$tdir
4319         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4320 }
4321 run_test 50 "special situations: /proc symlinks  ==============="
4322
4323 test_51a() {    # was test_51
4324         # bug 1516 - create an empty entry right after ".." then split dir
4325         test_mkdir -c1 $DIR/$tdir
4326         touch $DIR/$tdir/foo
4327         $MCREATE $DIR/$tdir/bar
4328         rm $DIR/$tdir/foo
4329         createmany -m $DIR/$tdir/longfile 201
4330         FNUM=202
4331         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4332                 $MCREATE $DIR/$tdir/longfile$FNUM
4333                 FNUM=$(($FNUM + 1))
4334                 echo -n "+"
4335         done
4336         echo
4337         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4338 }
4339 run_test 51a "special situations: split htree with empty entry =="
4340
4341 cleanup_print_lfs_df () {
4342         trap 0
4343         $LFS df
4344         $LFS df -i
4345 }
4346
4347 test_51b() {
4348         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4349
4350         local dir=$DIR/$tdir
4351         local nrdirs=$((65536 + 100))
4352
4353         # cleanup the directory
4354         rm -fr $dir
4355
4356         test_mkdir -c1 $dir
4357
4358         $LFS df
4359         $LFS df -i
4360         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4361         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4362         [[ $numfree -lt $nrdirs ]] &&
4363                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4364
4365         # need to check free space for the directories as well
4366         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4367         numfree=$(( blkfree / $(fs_inode_ksize) ))
4368         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4369
4370         trap cleanup_print_lfs_df EXIT
4371
4372         # create files
4373         createmany -d $dir/d $nrdirs || {
4374                 unlinkmany $dir/d $nrdirs
4375                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4376         }
4377
4378         # really created :
4379         nrdirs=$(ls -U $dir | wc -l)
4380
4381         # unlink all but 100 subdirectories, then check it still works
4382         local left=100
4383         local delete=$((nrdirs - left))
4384
4385         $LFS df
4386         $LFS df -i
4387
4388         # for ldiskfs the nlink count should be 1, but this is OSD specific
4389         # and so this is listed for informational purposes only
4390         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4391         unlinkmany -d $dir/d $delete ||
4392                 error "unlink of first $delete subdirs failed"
4393
4394         echo "nlink between: $(stat -c %h $dir)"
4395         local found=$(ls -U $dir | wc -l)
4396         [ $found -ne $left ] &&
4397                 error "can't find subdirs: found only $found, expected $left"
4398
4399         unlinkmany -d $dir/d $delete $left ||
4400                 error "unlink of second $left subdirs failed"
4401         # regardless of whether the backing filesystem tracks nlink accurately
4402         # or not, the nlink count shouldn't be more than "." and ".." here
4403         local after=$(stat -c %h $dir)
4404         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4405                 echo "nlink after: $after"
4406
4407         cleanup_print_lfs_df
4408 }
4409 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4410
4411 test_51d() {
4412         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4413         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4414
4415         test_mkdir $DIR/$tdir
4416         createmany -o $DIR/$tdir/t- 1000
4417         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4418         for N in $(seq 0 $((OSTCOUNT - 1))); do
4419                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4420                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4421                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4422                         '($1 == '$N') { objs += 1 } \
4423                         END { printf("%0.0f", objs) }')
4424                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4425         done
4426         unlinkmany $DIR/$tdir/t- 1000
4427
4428         NLAST=0
4429         for N in $(seq 1 $((OSTCOUNT - 1))); do
4430                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4431                         error "OST $N has less objects vs OST $NLAST" \
4432                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4433                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4434                         error "OST $N has less objects vs OST $NLAST" \
4435                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4436
4437                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4438                         error "OST $N has less #0 objects vs OST $NLAST" \
4439                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4440                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4441                         error "OST $N has less #0 objects vs OST $NLAST" \
4442                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4443                 NLAST=$N
4444         done
4445         rm -f $TMP/$tfile
4446 }
4447 run_test 51d "check object distribution"
4448
4449 test_51e() {
4450         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4451                 skip_env "ldiskfs only test"
4452         fi
4453
4454         test_mkdir -c1 $DIR/$tdir
4455         test_mkdir -c1 $DIR/$tdir/d0
4456
4457         touch $DIR/$tdir/d0/foo
4458         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4459                 error "file exceed 65000 nlink limit!"
4460         unlinkmany $DIR/$tdir/d0/f- 65001
4461         return 0
4462 }
4463 run_test 51e "check file nlink limit"
4464
4465 test_51f() {
4466         test_mkdir $DIR/$tdir
4467
4468         local max=100000
4469         local ulimit_old=$(ulimit -n)
4470         local spare=20 # number of spare fd's for scripts/libraries, etc.
4471         local mdt=$($LFS getstripe -m $DIR/$tdir)
4472         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4473
4474         echo "MDT$mdt numfree=$numfree, max=$max"
4475         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4476         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4477                 while ! ulimit -n $((numfree + spare)); do
4478                         numfree=$((numfree * 3 / 4))
4479                 done
4480                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4481         else
4482                 echo "left ulimit at $ulimit_old"
4483         fi
4484
4485         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4486                 unlinkmany $DIR/$tdir/f $numfree
4487                 error "create+open $numfree files in $DIR/$tdir failed"
4488         }
4489         ulimit -n $ulimit_old
4490
4491         # if createmany exits at 120s there will be fewer than $numfree files
4492         unlinkmany $DIR/$tdir/f $numfree || true
4493 }
4494 run_test 51f "check many open files limit"
4495
4496 test_52a() {
4497         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4498         test_mkdir $DIR/$tdir
4499         touch $DIR/$tdir/foo
4500         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4501         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4502         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4503         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4504         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4505                                         error "link worked"
4506         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4507         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4508         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4509                                                      error "lsattr"
4510         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4511         cp -r $DIR/$tdir $TMP/
4512         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4513 }
4514 run_test 52a "append-only flag test (should return errors)"
4515
4516 test_52b() {
4517         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4518         test_mkdir $DIR/$tdir
4519         touch $DIR/$tdir/foo
4520         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4521         cat test > $DIR/$tdir/foo && error "cat test worked"
4522         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4523         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4524         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4525                                         error "link worked"
4526         echo foo >> $DIR/$tdir/foo && error "echo worked"
4527         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4528         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4529         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4530         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4531                                                         error "lsattr"
4532         chattr -i $DIR/$tdir/foo || error "chattr failed"
4533
4534         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4535 }
4536 run_test 52b "immutable flag test (should return errors) ======="
4537
4538 test_53() {
4539         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4540         remote_mds_nodsh && skip "remote MDS with nodsh"
4541         remote_ost_nodsh && skip "remote OST with nodsh"
4542
4543         local param
4544         local param_seq
4545         local ostname
4546         local mds_last
4547         local mds_last_seq
4548         local ost_last
4549         local ost_last_seq
4550         local ost_last_id
4551         local ostnum
4552         local node
4553         local found=false
4554         local support_last_seq=true
4555
4556         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4557                 support_last_seq=false
4558
4559         # only test MDT0000
4560         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4561         local value
4562         for value in $(do_facet $SINGLEMDS \
4563                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4564                 param=$(echo ${value[0]} | cut -d "=" -f1)
4565                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4566
4567                 if $support_last_seq; then
4568                         param_seq=$(echo $param |
4569                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4570                         mds_last_seq=$(do_facet $SINGLEMDS \
4571                                        $LCTL get_param -n $param_seq)
4572                 fi
4573                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4574
4575                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4576                 node=$(facet_active_host ost$((ostnum+1)))
4577                 param="obdfilter.$ostname.last_id"
4578                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4579                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4580                         ost_last_id=$ost_last
4581
4582                         if $support_last_seq; then
4583                                 ost_last_id=$(echo $ost_last |
4584                                               awk -F':' '{print $2}' |
4585                                               sed -e "s/^0x//g")
4586                                 ost_last_seq=$(echo $ost_last |
4587                                                awk -F':' '{print $1}')
4588                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4589                         fi
4590
4591                         if [[ $ost_last_id != $mds_last ]]; then
4592                                 error "$ost_last_id != $mds_last"
4593                         else
4594                                 found=true
4595                                 break
4596                         fi
4597                 done
4598         done
4599         $found || error "can not match last_seq/last_id for $mdtosc"
4600         return 0
4601 }
4602 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4603
4604 test_54a() {
4605         perl -MSocket -e ';' || skip "no Socket perl module installed"
4606
4607         $SOCKETSERVER $DIR/socket ||
4608                 error "$SOCKETSERVER $DIR/socket failed: $?"
4609         $SOCKETCLIENT $DIR/socket ||
4610                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4611         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4612 }
4613 run_test 54a "unix domain socket test =========================="
4614
4615 test_54b() {
4616         f="$DIR/f54b"
4617         mknod $f c 1 3
4618         chmod 0666 $f
4619         dd if=/dev/zero of=$f bs=$(page_size) count=1
4620 }
4621 run_test 54b "char device works in lustre ======================"
4622
4623 find_loop_dev() {
4624         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4625         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4626         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4627
4628         for i in $(seq 3 7); do
4629                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4630                 LOOPDEV=$LOOPBASE$i
4631                 LOOPNUM=$i
4632                 break
4633         done
4634 }
4635
4636 cleanup_54c() {
4637         local rc=0
4638         loopdev="$DIR/loop54c"
4639
4640         trap 0
4641         $UMOUNT $DIR/$tdir || rc=$?
4642         losetup -d $loopdev || true
4643         losetup -d $LOOPDEV || true
4644         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4645         return $rc
4646 }
4647
4648 test_54c() {
4649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4650
4651         loopdev="$DIR/loop54c"
4652
4653         find_loop_dev
4654         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4655         trap cleanup_54c EXIT
4656         mknod $loopdev b 7 $LOOPNUM
4657         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4658         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4659         losetup $loopdev $DIR/$tfile ||
4660                 error "can't set up $loopdev for $DIR/$tfile"
4661         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4662         test_mkdir $DIR/$tdir
4663         mount -t ext2 $loopdev $DIR/$tdir ||
4664                 error "error mounting $loopdev on $DIR/$tdir"
4665         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4666                 error "dd write"
4667         df $DIR/$tdir
4668         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4669                 error "dd read"
4670         cleanup_54c
4671 }
4672 run_test 54c "block device works in lustre ====================="
4673
4674 test_54d() {
4675         f="$DIR/f54d"
4676         string="aaaaaa"
4677         mknod $f p
4678         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4679 }
4680 run_test 54d "fifo device works in lustre ======================"
4681
4682 test_54e() {
4683         f="$DIR/f54e"
4684         string="aaaaaa"
4685         cp -aL /dev/console $f
4686         echo $string > $f || error "echo $string to $f failed"
4687 }
4688 run_test 54e "console/tty device works in lustre ======================"
4689
4690 test_56a() {
4691         local numfiles=3
4692         local dir=$DIR/$tdir
4693
4694         rm -rf $dir
4695         test_mkdir -p $dir/dir
4696         for i in $(seq $numfiles); do
4697                 touch $dir/file$i
4698                 touch $dir/dir/file$i
4699         done
4700
4701         local numcomp=$($LFS getstripe --component-count $dir)
4702
4703         [[ $numcomp == 0 ]] && numcomp=1
4704
4705         # test lfs getstripe with --recursive
4706         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4707
4708         [[ $filenum -eq $((numfiles * 2)) ]] ||
4709                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4710         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4711         [[ $filenum -eq $numfiles ]] ||
4712                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4713         echo "$LFS getstripe showed obdidx or l_ost_idx"
4714
4715         # test lfs getstripe with file instead of dir
4716         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4717         [[ $filenum -eq 1 ]] ||
4718                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4719         echo "$LFS getstripe file1 passed"
4720
4721         #test lfs getstripe with --verbose
4722         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4723         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4724                 error "$LFS getstripe --verbose $dir: "\
4725                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4726         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4727                 error "$LFS getstripe $dir: showed lmm_magic"
4728
4729         #test lfs getstripe with -v prints lmm_fid
4730         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4731         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4732                 error "$LFS getstripe -v $dir: "\
4733                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4734         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4735                 error "$LFS getstripe $dir: showed lmm_fid by default"
4736         echo "$LFS getstripe --verbose passed"
4737
4738         #check for FID information
4739         local fid1=$($LFS getstripe --fid $dir/file1)
4740         local fid2=$($LFS getstripe --verbose $dir/file1 |
4741                      awk '/lmm_fid: / { print $2; exit; }')
4742         local fid3=$($LFS path2fid $dir/file1)
4743
4744         [ "$fid1" != "$fid2" ] &&
4745                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4746         [ "$fid1" != "$fid3" ] &&
4747                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4748         echo "$LFS getstripe --fid passed"
4749
4750         #test lfs getstripe with --obd
4751         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4752                 error "$LFS getstripe --obd wrong_uuid: should return error"
4753
4754         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4755
4756         local ostidx=1
4757         local obduuid=$(ostuuid_from_index $ostidx)
4758         local found=$($LFS getstripe -r --obd $obduuid $dir |
4759                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4760
4761         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4762         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4763                 ((filenum--))
4764         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4765                 ((filenum--))
4766
4767         [[ $found -eq $filenum ]] ||
4768                 error "$LFS getstripe --obd: found $found expect $filenum"
4769         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4770                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4771                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4772                 error "$LFS getstripe --obd: should not show file on other obd"
4773         echo "$LFS getstripe --obd passed"
4774 }
4775 run_test 56a "check $LFS getstripe"
4776
4777 test_56b() {
4778         local dir=$DIR/$tdir
4779         local numdirs=3
4780
4781         test_mkdir $dir
4782         for i in $(seq $numdirs); do
4783                 test_mkdir $dir/dir$i
4784         done
4785
4786         # test lfs getdirstripe default mode is non-recursion, which is
4787         # different from lfs getstripe
4788         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4789
4790         [[ $dircnt -eq 1 ]] ||
4791                 error "$LFS getdirstripe: found $dircnt, not 1"
4792         dircnt=$($LFS getdirstripe --recursive $dir |
4793                 grep -c lmv_stripe_count)
4794         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4795                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4796 }
4797 run_test 56b "check $LFS getdirstripe"
4798
4799 test_56c() {
4800         remote_ost_nodsh && skip "remote OST with nodsh"
4801
4802         local ost_idx=0
4803         local ost_name=$(ostname_from_index $ost_idx)
4804         local old_status=$(ost_dev_status $ost_idx)
4805
4806         [[ -z "$old_status" ]] ||
4807                 skip_env "OST $ost_name is in $old_status status"
4808
4809         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4810         sleep_maxage
4811
4812         local new_status=$(ost_dev_status $ost_idx)
4813
4814         [[ "$new_status" = "D" ]] ||
4815                 error "OST $ost_name is in status of '$new_status', not 'D'"
4816
4817         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4818         sleep_maxage
4819
4820         new_status=$(ost_dev_status $ost_idx)
4821         [[ -z "$new_status" ]] ||
4822                 error "OST $ost_name is in status of '$new_status', not ''"
4823 }
4824 run_test 56c "check 'lfs df' showing device status"
4825
4826 NUMFILES=3
4827 NUMDIRS=3
4828 setup_56() {
4829         local local_tdir="$1"
4830         local local_numfiles="$2"
4831         local local_numdirs="$3"
4832         local dir_params="$4"
4833         local dir_stripe_params="$5"
4834
4835         if [ ! -d "$local_tdir" ] ; then
4836                 test_mkdir -p $dir_stripe_params $local_tdir
4837                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4838                 for i in $(seq $local_numfiles) ; do
4839                         touch $local_tdir/file$i
4840                 done
4841                 for i in $(seq $local_numdirs) ; do
4842                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4843                         for j in $(seq $local_numfiles) ; do
4844                                 touch $local_tdir/dir$i/file$j
4845                         done
4846                 done
4847         fi
4848 }
4849
4850 setup_56_special() {
4851         local local_tdir=$1
4852         local local_numfiles=$2
4853         local local_numdirs=$3
4854
4855         setup_56 $local_tdir $local_numfiles $local_numdirs
4856
4857         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4858                 for i in $(seq $local_numfiles) ; do
4859                         mknod $local_tdir/loop${i}b b 7 $i
4860                         mknod $local_tdir/null${i}c c 1 3
4861                         ln -s $local_tdir/file1 $local_tdir/link${i}
4862                 done
4863                 for i in $(seq $local_numdirs) ; do
4864                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4865                         mknod $local_tdir/dir$i/null${i}c c 1 3
4866                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4867                 done
4868         fi
4869 }
4870
4871 test_56g() {
4872         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4873         local expected=$(($NUMDIRS + 2))
4874
4875         setup_56 $dir $NUMFILES $NUMDIRS
4876
4877         # test lfs find with -name
4878         for i in $(seq $NUMFILES) ; do
4879                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4880
4881                 [ $nums -eq $expected ] ||
4882                         error "lfs find -name '*$i' $dir wrong: "\
4883                               "found $nums, expected $expected"
4884         done
4885 }
4886 run_test 56g "check lfs find -name"
4887
4888 test_56h() {
4889         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4890         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4891
4892         setup_56 $dir $NUMFILES $NUMDIRS
4893
4894         # test lfs find with ! -name
4895         for i in $(seq $NUMFILES) ; do
4896                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4897
4898                 [ $nums -eq $expected ] ||
4899                         error "lfs find ! -name '*$i' $dir wrong: "\
4900                               "found $nums, expected $expected"
4901         done
4902 }
4903 run_test 56h "check lfs find ! -name"
4904
4905 test_56i() {
4906         local dir=$DIR/$tdir
4907
4908         test_mkdir $dir
4909
4910         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4911         local out=$($cmd)
4912
4913         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4914 }
4915 run_test 56i "check 'lfs find -ost UUID' skips directories"
4916
4917 test_56j() {
4918         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4919
4920         setup_56_special $dir $NUMFILES $NUMDIRS
4921
4922         local expected=$((NUMDIRS + 1))
4923         local cmd="$LFS find -type d $dir"
4924         local nums=$($cmd | wc -l)
4925
4926         [ $nums -eq $expected ] ||
4927                 error "'$cmd' wrong: found $nums, expected $expected"
4928 }
4929 run_test 56j "check lfs find -type d"
4930
4931 test_56k() {
4932         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4933
4934         setup_56_special $dir $NUMFILES $NUMDIRS
4935
4936         local expected=$(((NUMDIRS + 1) * NUMFILES))
4937         local cmd="$LFS find -type f $dir"
4938         local nums=$($cmd | wc -l)
4939
4940         [ $nums -eq $expected ] ||
4941                 error "'$cmd' wrong: found $nums, expected $expected"
4942 }
4943 run_test 56k "check lfs find -type f"
4944
4945 test_56l() {
4946         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4947
4948         setup_56_special $dir $NUMFILES $NUMDIRS
4949
4950         local expected=$((NUMDIRS + NUMFILES))
4951         local cmd="$LFS find -type b $dir"
4952         local nums=$($cmd | wc -l)
4953
4954         [ $nums -eq $expected ] ||
4955                 error "'$cmd' wrong: found $nums, expected $expected"
4956 }
4957 run_test 56l "check lfs find -type b"
4958
4959 test_56m() {
4960         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4961
4962         setup_56_special $dir $NUMFILES $NUMDIRS
4963
4964         local expected=$((NUMDIRS + NUMFILES))
4965         local cmd="$LFS find -type c $dir"
4966         local nums=$($cmd | wc -l)
4967         [ $nums -eq $expected ] ||
4968                 error "'$cmd' wrong: found $nums, expected $expected"
4969 }
4970 run_test 56m "check lfs find -type c"
4971
4972 test_56n() {
4973         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4974         setup_56_special $dir $NUMFILES $NUMDIRS
4975
4976         local expected=$((NUMDIRS + NUMFILES))
4977         local cmd="$LFS find -type l $dir"
4978         local nums=$($cmd | wc -l)
4979
4980         [ $nums -eq $expected ] ||
4981                 error "'$cmd' wrong: found $nums, expected $expected"
4982 }
4983 run_test 56n "check lfs find -type l"
4984
4985 test_56o() {
4986         local dir=$DIR/$tdir
4987
4988         setup_56 $dir $NUMFILES $NUMDIRS
4989         utime $dir/file1 > /dev/null || error "utime (1)"
4990         utime $dir/file2 > /dev/null || error "utime (2)"
4991         utime $dir/dir1 > /dev/null || error "utime (3)"
4992         utime $dir/dir2 > /dev/null || error "utime (4)"
4993         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
4994         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
4995
4996         local expected=4
4997         local nums=$($LFS find -mtime +0 $dir | wc -l)
4998
4999         [ $nums -eq $expected ] ||
5000                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5001
5002         expected=12
5003         cmd="$LFS find -mtime 0 $dir"
5004         nums=$($cmd | wc -l)
5005         [ $nums -eq $expected ] ||
5006                 error "'$cmd' wrong: found $nums, expected $expected"
5007 }
5008 run_test 56o "check lfs find -mtime for old files"
5009
5010 test_56p() {
5011         [ $RUNAS_ID -eq $UID ] &&
5012                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5013
5014         local dir=$DIR/$tdir
5015
5016         setup_56 $dir $NUMFILES $NUMDIRS
5017         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5018
5019         local expected=$NUMFILES
5020         local cmd="$LFS find -uid $RUNAS_ID $dir"
5021         local nums=$($cmd | wc -l)
5022
5023         [ $nums -eq $expected ] ||
5024                 error "'$cmd' wrong: found $nums, expected $expected"
5025
5026         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5027         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5028         nums=$($cmd | wc -l)
5029         [ $nums -eq $expected ] ||
5030                 error "'$cmd' wrong: found $nums, expected $expected"
5031 }
5032 run_test 56p "check lfs find -uid and ! -uid"
5033
5034 test_56q() {
5035         [ $RUNAS_ID -eq $UID ] &&
5036                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5037
5038         local dir=$DIR/$tdir
5039
5040         setup_56 $dir $NUMFILES $NUMDIRS
5041         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5042
5043         local expected=$NUMFILES
5044         local cmd="$LFS find -gid $RUNAS_GID $dir"
5045         local nums=$($cmd | wc -l)
5046
5047         [ $nums -eq $expected ] ||
5048                 error "'$cmd' wrong: found $nums, expected $expected"
5049
5050         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5051         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5052         nums=$($cmd | wc -l)
5053         [ $nums -eq $expected ] ||
5054                 error "'$cmd' wrong: found $nums, expected $expected"
5055 }
5056 run_test 56q "check lfs find -gid and ! -gid"
5057
5058 test_56r() {
5059         local dir=$DIR/$tdir
5060
5061         setup_56 $dir $NUMFILES $NUMDIRS
5062
5063         local expected=12
5064         local cmd="$LFS find -size 0 -type f $dir"
5065         local nums=$($cmd | wc -l)
5066
5067         [ $nums -eq $expected ] ||
5068                 error "'$cmd' wrong: found $nums, expected $expected"
5069         expected=0
5070         cmd="$LFS find ! -size 0 -type f $dir"
5071         nums=$($cmd | wc -l)
5072         [ $nums -eq $expected ] ||
5073                 error "'$cmd' wrong: found $nums, expected $expected"
5074         echo "test" > $dir/$tfile
5075         echo "test2" > $dir/$tfile.2 && sync
5076         expected=1
5077         cmd="$LFS find -size 5 -type f $dir"
5078         nums=$($cmd | wc -l)
5079         [ $nums -eq $expected ] ||
5080                 error "'$cmd' wrong: found $nums, expected $expected"
5081         expected=1
5082         cmd="$LFS find -size +5 -type f $dir"
5083         nums=$($cmd | wc -l)
5084         [ $nums -eq $expected ] ||
5085                 error "'$cmd' wrong: found $nums, expected $expected"
5086         expected=2
5087         cmd="$LFS find -size +0 -type f $dir"
5088         nums=$($cmd | wc -l)
5089         [ $nums -eq $expected ] ||
5090                 error "'$cmd' wrong: found $nums, expected $expected"
5091         expected=2
5092         cmd="$LFS find ! -size -5 -type f $dir"
5093         nums=$($cmd | wc -l)
5094         [ $nums -eq $expected ] ||
5095                 error "'$cmd' wrong: found $nums, expected $expected"
5096         expected=12
5097         cmd="$LFS find -size -5 -type f $dir"
5098         nums=$($cmd | wc -l)
5099         [ $nums -eq $expected ] ||
5100                 error "'$cmd' wrong: found $nums, expected $expected"
5101 }
5102 run_test 56r "check lfs find -size works"
5103
5104 test_56s() { # LU-611 #LU-9369
5105         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5106
5107         local dir=$DIR/$tdir
5108         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5109
5110         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5111         for i in $(seq $NUMDIRS); do
5112                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5113         done
5114
5115         local expected=$NUMDIRS
5116         local cmd="$LFS find -c $OSTCOUNT $dir"
5117         local nums=$($cmd | wc -l)
5118
5119         [ $nums -eq $expected ] || {
5120                 $LFS getstripe -R $dir
5121                 error "'$cmd' wrong: found $nums, expected $expected"
5122         }
5123
5124         expected=$((NUMDIRS + onestripe))
5125         cmd="$LFS find -stripe-count +0 -type f $dir"
5126         nums=$($cmd | wc -l)
5127         [ $nums -eq $expected ] || {
5128                 $LFS getstripe -R $dir
5129                 error "'$cmd' wrong: found $nums, expected $expected"
5130         }
5131
5132         expected=$onestripe
5133         cmd="$LFS find -stripe-count 1 -type f $dir"
5134         nums=$($cmd | wc -l)
5135         [ $nums -eq $expected ] || {
5136                 $LFS getstripe -R $dir
5137                 error "'$cmd' wrong: found $nums, expected $expected"
5138         }
5139
5140         cmd="$LFS find -stripe-count -2 -type f $dir"
5141         nums=$($cmd | wc -l)
5142         [ $nums -eq $expected ] || {
5143                 $LFS getstripe -R $dir
5144                 error "'$cmd' wrong: found $nums, expected $expected"
5145         }
5146
5147         expected=0
5148         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5149         nums=$($cmd | wc -l)
5150         [ $nums -eq $expected ] || {
5151                 $LFS getstripe -R $dir
5152                 error "'$cmd' wrong: found $nums, expected $expected"
5153         }
5154 }
5155 run_test 56s "check lfs find -stripe-count works"
5156
5157 test_56t() { # LU-611 #LU-9369
5158         local dir=$DIR/$tdir
5159
5160         setup_56 $dir 0 $NUMDIRS
5161         for i in $(seq $NUMDIRS); do
5162                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5163         done
5164
5165         local expected=$NUMDIRS
5166         local cmd="$LFS find -S 8M $dir"
5167         local nums=$($cmd | wc -l)
5168
5169         [ $nums -eq $expected ] || {
5170                 $LFS getstripe -R $dir
5171                 error "'$cmd' wrong: found $nums, expected $expected"
5172         }
5173         rm -rf $dir
5174
5175         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5176
5177         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5178
5179         expected=$(((NUMDIRS + 1) * NUMFILES))
5180         cmd="$LFS find -stripe-size 512k -type f $dir"
5181         nums=$($cmd | wc -l)
5182         [ $nums -eq $expected ] ||
5183                 error "'$cmd' wrong: found $nums, expected $expected"
5184
5185         cmd="$LFS find -stripe-size +320k -type f $dir"
5186         nums=$($cmd | wc -l)
5187         [ $nums -eq $expected ] ||
5188                 error "'$cmd' wrong: found $nums, expected $expected"
5189
5190         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5191         cmd="$LFS find -stripe-size +200k -type f $dir"
5192         nums=$($cmd | wc -l)
5193         [ $nums -eq $expected ] ||
5194                 error "'$cmd' wrong: found $nums, expected $expected"
5195
5196         cmd="$LFS find -stripe-size -640k -type f $dir"
5197         nums=$($cmd | wc -l)
5198         [ $nums -eq $expected ] ||
5199                 error "'$cmd' wrong: found $nums, expected $expected"
5200
5201         expected=4
5202         cmd="$LFS find -stripe-size 256k -type f $dir"
5203         nums=$($cmd | wc -l)
5204         [ $nums -eq $expected ] ||
5205                 error "'$cmd' wrong: found $nums, expected $expected"
5206
5207         cmd="$LFS find -stripe-size -320k -type f $dir"
5208         nums=$($cmd | wc -l)
5209         [ $nums -eq $expected ] ||
5210                 error "'$cmd' wrong: found $nums, expected $expected"
5211
5212         expected=0
5213         cmd="$LFS find -stripe-size 1024k -type f $dir"
5214         nums=$($cmd | wc -l)
5215         [ $nums -eq $expected ] ||
5216                 error "'$cmd' wrong: found $nums, expected $expected"
5217 }
5218 run_test 56t "check lfs find -stripe-size works"
5219
5220 test_56u() { # LU-611
5221         local dir=$DIR/$tdir
5222
5223         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5224
5225         if [[ $OSTCOUNT -gt 1 ]]; then
5226                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5227                 onestripe=4
5228         else
5229                 onestripe=0
5230         fi
5231
5232         local expected=$(((NUMDIRS + 1) * NUMFILES))
5233         local cmd="$LFS find -stripe-index 0 -type f $dir"
5234         local nums=$($cmd | wc -l)
5235
5236         [ $nums -eq $expected ] ||
5237                 error "'$cmd' wrong: found $nums, expected $expected"
5238
5239         expected=$onestripe
5240         cmd="$LFS find -stripe-index 1 -type f $dir"
5241         nums=$($cmd | wc -l)
5242         [ $nums -eq $expected ] ||
5243                 error "'$cmd' wrong: found $nums, expected $expected"
5244
5245         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5246         nums=$($cmd | wc -l)
5247         [ $nums -eq $expected ] ||
5248                 error "'$cmd' wrong: found $nums, expected $expected"
5249
5250         expected=0
5251         # This should produce an error and not return any files
5252         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5253         nums=$($cmd 2>/dev/null | wc -l)
5254         [ $nums -eq $expected ] ||
5255                 error "'$cmd' wrong: found $nums, expected $expected"
5256
5257         if [[ $OSTCOUNT -gt 1 ]]; then
5258                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5259                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5260                 nums=$($cmd | wc -l)
5261                 [ $nums -eq $expected ] ||
5262                         error "'$cmd' wrong: found $nums, expected $expected"
5263         fi
5264 }
5265 run_test 56u "check lfs find -stripe-index works"
5266
5267 test_56v() {
5268         local mdt_idx=0
5269         local dir=$DIR/$tdir
5270
5271         setup_56 $dir $NUMFILES $NUMDIRS
5272
5273         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5274         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5275
5276         for file in $($LFS find -m $UUID $dir); do
5277                 file_midx=$($LFS getstripe -m $file)
5278                 [ $file_midx -eq $mdt_idx ] ||
5279                         error "lfs find -m $UUID != getstripe -m $file_midx"
5280         done
5281 }
5282 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5283
5284 test_56w() {
5285         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5286         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5287
5288         local dir=$DIR/$tdir
5289
5290         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5291
5292         local stripe_size=$($LFS getstripe -S -d $dir) ||
5293                 error "$LFS getstripe -S -d $dir failed"
5294         stripe_size=${stripe_size%% *}
5295
5296         local file_size=$((stripe_size * OSTCOUNT))
5297         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5298         local required_space=$((file_num * file_size))
5299         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5300                            head -n1)
5301         [[ $free_space -le $((required_space / 1024)) ]] &&
5302                 skip_env "need $required_space, have $free_space kbytes"
5303
5304         local dd_bs=65536
5305         local dd_count=$((file_size / dd_bs))
5306
5307         # write data into the files
5308         local i
5309         local j
5310         local file
5311
5312         for i in $(seq $NUMFILES); do
5313                 file=$dir/file$i
5314                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5315                         error "write data into $file failed"
5316         done
5317         for i in $(seq $NUMDIRS); do
5318                 for j in $(seq $NUMFILES); do
5319                         file=$dir/dir$i/file$j
5320                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5321                                 error "write data into $file failed"
5322                 done
5323         done
5324
5325         # $LFS_MIGRATE will fail if hard link migration is unsupported
5326         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5327                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5328                         error "creating links to $dir/dir1/file1 failed"
5329         fi
5330
5331         local expected=-1
5332
5333         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5334
5335         # lfs_migrate file
5336         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5337
5338         echo "$cmd"
5339         eval $cmd || error "$cmd failed"
5340
5341         check_stripe_count $dir/file1 $expected
5342
5343         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5344         then
5345                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5346                 # OST 1 if it is on OST 0. This file is small enough to
5347                 # be on only one stripe.
5348                 file=$dir/migr_1_ost
5349                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5350                         error "write data into $file failed"
5351                 local obdidx=$($LFS getstripe -i $file)
5352                 local oldmd5=$(md5sum $file)
5353                 local newobdidx=0
5354
5355                 [[ $obdidx -eq 0 ]] && newobdidx=1
5356                 cmd="$LFS migrate -i $newobdidx $file"
5357                 echo $cmd
5358                 eval $cmd || error "$cmd failed"
5359
5360                 local realobdix=$($LFS getstripe -i $file)
5361                 local newmd5=$(md5sum $file)
5362
5363                 [[ $newobdidx -ne $realobdix ]] &&
5364                         error "new OST is different (was=$obdidx, "\
5365                               "wanted=$newobdidx, got=$realobdix)"
5366                 [[ "$oldmd5" != "$newmd5" ]] &&
5367                         error "md5sum differ: $oldmd5, $newmd5"
5368         fi
5369
5370         # lfs_migrate dir
5371         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5372         echo "$cmd"
5373         eval $cmd || error "$cmd failed"
5374
5375         for j in $(seq $NUMFILES); do
5376                 check_stripe_count $dir/dir1/file$j $expected
5377         done
5378
5379         # lfs_migrate works with lfs find
5380         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5381              $LFS_MIGRATE -y -c $expected"
5382         echo "$cmd"
5383         eval $cmd || error "$cmd failed"
5384
5385         for i in $(seq 2 $NUMFILES); do
5386                 check_stripe_count $dir/file$i $expected
5387         done
5388         for i in $(seq 2 $NUMDIRS); do
5389                 for j in $(seq $NUMFILES); do
5390                 check_stripe_count $dir/dir$i/file$j $expected
5391                 done
5392         done
5393 }
5394 run_test 56w "check lfs_migrate -c stripe_count works"
5395
5396 test_56wb() {
5397         local file1=$DIR/$tdir/file1
5398         local create_pool=false
5399         local initial_pool=$($LFS getstripe -p $DIR)
5400         local pool_list=()
5401         local pool=""
5402
5403         echo -n "Creating test dir..."
5404         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5405         echo "done."
5406
5407         echo -n "Creating test file..."
5408         touch $file1 || error "cannot create file"
5409         echo "done."
5410
5411         echo -n "Detecting existing pools..."
5412         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5413
5414         if [ ${#pool_list[@]} -gt 0 ]; then
5415                 echo "${pool_list[@]}"
5416                 for thispool in "${pool_list[@]}"; do
5417                         if [[ -z "$initial_pool" ||
5418                               "$initial_pool" != "$thispool" ]]; then
5419                                 pool="$thispool"
5420                                 echo "Using existing pool '$pool'"
5421                                 break
5422                         fi
5423                 done
5424         else
5425                 echo "none detected."
5426         fi
5427         if [ -z "$pool" ]; then
5428                 pool=${POOL:-testpool}
5429                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5430                 echo -n "Creating pool '$pool'..."
5431                 create_pool=true
5432                 pool_add $pool &> /dev/null ||
5433                         error "pool_add failed"
5434                 echo "done."
5435
5436                 echo -n "Adding target to pool..."
5437                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5438                         error "pool_add_targets failed"
5439                 echo "done."
5440         fi
5441
5442         echo -n "Setting pool using -p option..."
5443         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5444                 error "migrate failed rc = $?"
5445         echo "done."
5446
5447         echo -n "Verifying test file is in pool after migrating..."
5448         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5449                 error "file was not migrated to pool $pool"
5450         echo "done."
5451
5452         echo -n "Removing test file from pool '$pool'..."
5453         $LFS migrate $file1 &> /dev/null ||
5454                 error "cannot remove from pool"
5455         [ "$($LFS getstripe -p $file1)" ] &&
5456                 error "pool still set"
5457         echo "done."
5458
5459         echo -n "Setting pool using --pool option..."
5460         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5461                 error "migrate failed rc = $?"
5462         echo "done."
5463
5464         # Clean up
5465         rm -f $file1
5466         if $create_pool; then
5467                 destroy_test_pools 2> /dev/null ||
5468                         error "destroy test pools failed"
5469         fi
5470 }
5471 run_test 56wb "check lfs_migrate pool support"
5472
5473 test_56wc() {
5474         local file1="$DIR/$tdir/file 1"
5475
5476         echo -n "Creating test dir..."
5477         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5478         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5479         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5480                 error "cannot set stripe"
5481         echo "done"
5482
5483         echo -n "Setting initial stripe for test file..."
5484         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5485                 error "cannot set stripe"
5486         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5487                 error "stripe size not set"
5488         echo "done."
5489
5490         # File currently set to -S 512K -c 1
5491
5492         # Ensure -c and -S options are rejected when -R is set
5493         echo -n "Verifying incompatible options are detected..."
5494         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5495                 error "incompatible -c and -R options not detected"
5496         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5497                 error "incompatible -S and -R options not detected"
5498         echo "done."
5499
5500         # Ensure unrecognized options are passed through to 'lfs migrate'
5501         echo -n "Verifying -S option is passed through to lfs migrate..."
5502         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5503                 error "migration failed"
5504         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5505                 error "file was not restriped"
5506         echo "done."
5507
5508         # File currently set to -S 1M -c 1
5509
5510         # Ensure long options are supported
5511         echo -n "Verifying long options supported..."
5512         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5513                 error "long option without argument not supported"
5514         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5515                 error "long option with argument not supported"
5516         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5517                 error "file not restriped with --stripe-size option"
5518         echo "done."
5519
5520         # File currently set to -S 512K -c 1
5521
5522         if [ "$OSTCOUNT" -gt 1 ]; then
5523                 echo -n "Verifying explicit stripe count can be set..."
5524                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5525                         error "migrate failed"
5526                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5527                         error "file not restriped to explicit count"
5528                 echo "done."
5529         fi
5530
5531         # File currently set to -S 512K -c 1 or -S 512K -c 2
5532
5533         # Ensure parent striping is used if -R is set, and no stripe
5534         # count or size is specified
5535         echo -n "Setting stripe for parent directory..."
5536         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5537                 error "cannot set stripe"
5538         echo "done."
5539
5540         echo -n "Verifying restripe option uses parent stripe settings..."
5541         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5542                 error "migrate failed"
5543         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5544                 error "file not restriped to parent settings"
5545         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5546                 error "file not restriped to parent settings"
5547         echo "done."
5548
5549         # File currently set to -S 1M -c 1
5550
5551         # Ensure striping is preserved if -R is not set, and no stripe
5552         # count or size is specified
5553         echo -n "Verifying striping size preserved when not specified..."
5554         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5555         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5556                 error "cannot set stripe on parent directory"
5557         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5558                 error "migrate failed"
5559         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5560                 error "file was restriped"
5561         echo "done."
5562
5563         # Ensure file name properly detected when final option has no argument
5564         echo -n "Verifying file name properly detected..."
5565         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5566                 error "file name interpreted as option argument"
5567         echo "done."
5568
5569         # Clean up
5570         rm -f "$file1"
5571 }
5572 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5573
5574 test_56wd() {
5575         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5576
5577         local file1=$DIR/$tdir/file1
5578
5579         echo -n "Creating test dir..."
5580         test_mkdir $DIR/$tdir || error "cannot create dir"
5581         echo "done."
5582
5583         echo -n "Creating test file..."
5584         touch $file1
5585         echo "done."
5586
5587         # Ensure 'lfs migrate' will fail by using a non-existent option,
5588         # and make sure rsync is not called to recover
5589         echo -n "Make sure --no-rsync option works..."
5590         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5591                 grep -q 'refusing to fall back to rsync' ||
5592                 error "rsync was called with --no-rsync set"
5593         echo "done."
5594
5595         # Ensure rsync is called without trying 'lfs migrate' first
5596         echo -n "Make sure --rsync option works..."
5597         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5598                 grep -q 'falling back to rsync' &&
5599                 error "lfs migrate was called with --rsync set"
5600         echo "done."
5601
5602         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5603         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5604                 grep -q 'at the same time' ||
5605                 error "--rsync and --no-rsync accepted concurrently"
5606         echo "done."
5607
5608         # Clean up
5609         rm -f $file1
5610 }
5611 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5612
5613 test_56x() {
5614         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5615         check_swap_layouts_support
5616
5617         local dir=$DIR/$tdir
5618         local ref1=/etc/passwd
5619         local file1=$dir/file1
5620
5621         test_mkdir $dir || error "creating dir $dir"
5622         $LFS setstripe -c 2 $file1
5623         cp $ref1 $file1
5624         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5625         stripe=$($LFS getstripe -c $file1)
5626         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5627         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5628
5629         # clean up
5630         rm -f $file1
5631 }
5632 run_test 56x "lfs migration support"
5633
5634 test_56xa() {
5635         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5636         check_swap_layouts_support
5637
5638         local dir=$DIR/$tdir/$testnum
5639
5640         test_mkdir -p $dir
5641
5642         local ref1=/etc/passwd
5643         local file1=$dir/file1
5644
5645         $LFS setstripe -c 2 $file1
5646         cp $ref1 $file1
5647         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5648
5649         local stripe=$($LFS getstripe -c $file1)
5650
5651         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5652         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5653
5654         # clean up
5655         rm -f $file1
5656 }
5657 run_test 56xa "lfs migration --block support"
5658
5659 check_migrate_links() {
5660         local dir="$1"
5661         local file1="$dir/file1"
5662         local begin="$2"
5663         local count="$3"
5664         local total_count=$(($begin + $count - 1))
5665         local symlink_count=10
5666         local uniq_count=10
5667
5668         if [ ! -f "$file1" ]; then
5669                 echo -n "creating initial file..."
5670                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5671                         error "cannot setstripe initial file"
5672                 echo "done"
5673
5674                 echo -n "creating symlinks..."
5675                 for s in $(seq 1 $symlink_count); do
5676                         ln -s "$file1" "$dir/slink$s" ||
5677                                 error "cannot create symlinks"
5678                 done
5679                 echo "done"
5680
5681                 echo -n "creating nonlinked files..."
5682                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5683                         error "cannot create nonlinked files"
5684                 echo "done"
5685         fi
5686
5687         # create hard links
5688         if [ ! -f "$dir/file$total_count" ]; then
5689                 echo -n "creating hard links $begin:$total_count..."
5690                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5691                         /dev/null || error "cannot create hard links"
5692                 echo "done"
5693         fi
5694
5695         echo -n "checking number of hard links listed in xattrs..."
5696         local fid=$($LFS getstripe -F "$file1")
5697         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5698
5699         echo "${#paths[*]}"
5700         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5701                         skip "hard link list has unexpected size, skipping test"
5702         fi
5703         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5704                         error "link names should exceed xattrs size"
5705         fi
5706
5707         echo -n "migrating files..."
5708         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5709         local rc=$?
5710         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5711         echo "done"
5712
5713         # make sure all links have been properly migrated
5714         echo -n "verifying files..."
5715         fid=$($LFS getstripe -F "$file1") ||
5716                 error "cannot get fid for file $file1"
5717         for i in $(seq 2 $total_count); do
5718                 local fid2=$($LFS getstripe -F $dir/file$i)
5719
5720                 [ "$fid2" == "$fid" ] ||
5721                         error "migrated hard link has mismatched FID"
5722         done
5723
5724         # make sure hard links were properly detected, and migration was
5725         # performed only once for the entire link set; nonlinked files should
5726         # also be migrated
5727         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5728         local expected=$(($uniq_count + 1))
5729
5730         [ "$actual" -eq  "$expected" ] ||
5731                 error "hard links individually migrated ($actual != $expected)"
5732
5733         # make sure the correct number of hard links are present
5734         local hardlinks=$(stat -c '%h' "$file1")
5735
5736         [ $hardlinks -eq $total_count ] ||
5737                 error "num hard links $hardlinks != $total_count"
5738         echo "done"
5739
5740         return 0
5741 }
5742
5743 test_56xb() {
5744         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
5745                 skip "Need MDS version at least 2.10.55"
5746
5747         local dir="$DIR/$tdir"
5748
5749         test_mkdir "$dir" || error "cannot create dir $dir"
5750
5751         echo "testing lfs migrate mode when all links fit within xattrs"
5752         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5753
5754         echo "testing rsync mode when all links fit within xattrs"
5755         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5756
5757         echo "testing lfs migrate mode when all links do not fit within xattrs"
5758         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5759
5760         echo "testing rsync mode when all links do not fit within xattrs"
5761         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5762
5763         # clean up
5764         rm -rf $dir
5765 }
5766 run_test 56xb "lfs migration hard link support"
5767
5768 test_56y() {
5769         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5770                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5771
5772         local res=""
5773         local dir=$DIR/$tdir
5774         local f1=$dir/file1
5775         local f2=$dir/file2
5776
5777         test_mkdir -p $dir || error "creating dir $dir"
5778         touch $f1 || error "creating std file $f1"
5779         $MULTIOP $f2 H2c || error "creating released file $f2"
5780
5781         # a directory can be raid0, so ask only for files
5782         res=$($LFS find $dir -L raid0 -type f | wc -l)
5783         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5784
5785         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5786         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5787
5788         # only files can be released, so no need to force file search
5789         res=$($LFS find $dir -L released)
5790         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5791
5792         res=$($LFS find $dir -type f \! -L released)
5793         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5794 }
5795 run_test 56y "lfs find -L raid0|released"
5796
5797 test_56z() { # LU-4824
5798         # This checks to make sure 'lfs find' continues after errors
5799         # There are two classes of errors that should be caught:
5800         # - If multiple paths are provided, all should be searched even if one
5801         #   errors out
5802         # - If errors are encountered during the search, it should not terminate
5803         #   early
5804         local dir=$DIR/$tdir
5805         local i
5806
5807         test_mkdir $dir
5808         for i in d{0..9}; do
5809                 test_mkdir $dir/$i
5810         done
5811         touch $dir/d{0..9}/$tfile
5812         $LFS find $DIR/non_existent_dir $dir &&
5813                 error "$LFS find did not return an error"
5814         # Make a directory unsearchable. This should NOT be the last entry in
5815         # directory order.  Arbitrarily pick the 6th entry
5816         chmod 700 $($LFS find $dir -type d | sed '6!d')
5817
5818         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5819
5820         # The user should be able to see 10 directories and 9 files
5821         [ $count == 19 ] || error "$LFS find did not continue after error"
5822 }
5823 run_test 56z "lfs find should continue after an error"
5824
5825 test_56aa() { # LU-5937
5826         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5827
5828         local dir=$DIR/$tdir
5829
5830         mkdir $dir
5831         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5832
5833         createmany -o $dir/striped_dir/${tfile}- 1024
5834         local dirs=$($LFS find --size +8k $dir/)
5835
5836         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5837 }
5838 run_test 56aa "lfs find --size under striped dir"
5839
5840 test_56ab() { # LU-10705
5841         test_mkdir $DIR/$tdir
5842         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5843         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5844         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5845         # Flush writes to ensure valid blocks.  Need to be more thorough for
5846         # ZFS, since blocks are not allocated/returned to client immediately.
5847         sync_all_data
5848         wait_zfs_commit ost1 2
5849         cancel_lru_locks osc
5850         ls -ls $DIR/$tdir
5851
5852         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5853
5854         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5855
5856         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5857         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5858
5859         rm -f $DIR/$tdir/$tfile.[123]
5860 }
5861 run_test 56ab "lfs find --blocks"
5862
5863 test_56ba() {
5864         # Create composite files with one component
5865         local dir=$DIR/$tdir
5866
5867         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5868         # Create composite files with three components
5869         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5870         # Create non-composite files
5871         createmany -o $dir/${tfile}- 10
5872
5873         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5874
5875         [[ $nfiles == 10 ]] ||
5876                 error "lfs find -E 1M found $nfiles != 10 files"
5877
5878         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5879         [[ $nfiles == 25 ]] ||
5880                 error "lfs find ! -E 1M found $nfiles != 25 files"
5881
5882         # All files have a component that starts at 0
5883         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5884         [[ $nfiles == 35 ]] ||
5885                 error "lfs find --component-start 0 - $nfiles != 35 files"
5886
5887         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5888         [[ $nfiles == 15 ]] ||
5889                 error "lfs find --component-start 2M - $nfiles != 15 files"
5890
5891         # All files created here have a componenet that does not starts at 2M
5892         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5893         [[ $nfiles == 35 ]] ||
5894                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5895
5896         # Find files with a specified number of components
5897         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5898         [[ $nfiles == 15 ]] ||
5899                 error "lfs find --component-count 3 - $nfiles != 15 files"
5900
5901         # Remember non-composite files have a component count of zero
5902         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5903         [[ $nfiles == 10 ]] ||
5904                 error "lfs find --component-count 0 - $nfiles != 10 files"
5905
5906         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5907         [[ $nfiles == 20 ]] ||
5908                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5909
5910         # All files have a flag called "init"
5911         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5912         [[ $nfiles == 35 ]] ||
5913                 error "lfs find --component-flags init - $nfiles != 35 files"
5914
5915         # Multi-component files will have a component not initialized
5916         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5917         [[ $nfiles == 15 ]] ||
5918                 error "lfs find !--component-flags init - $nfiles != 15 files"
5919
5920         rm -rf $dir
5921
5922 }
5923 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5924
5925 test_56ca() {
5926         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5927                 skip "Need MDS version at least 2.10.57"
5928
5929         local td=$DIR/$tdir
5930         local tf=$td/$tfile
5931         local dir
5932         local nfiles
5933         local cmd
5934         local i
5935         local j
5936
5937         # create mirrored directories and mirrored files
5938         mkdir $td || error "mkdir $td failed"
5939         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5940         createmany -o $tf- 10 || error "create $tf- failed"
5941
5942         for i in $(seq 2); do
5943                 dir=$td/dir$i
5944                 mkdir $dir || error "mkdir $dir failed"
5945                 $LFS mirror create -N$((3 + i)) $dir ||
5946                         error "create mirrored dir $dir failed"
5947                 createmany -o $dir/$tfile- 10 ||
5948                         error "create $dir/$tfile- failed"
5949         done
5950
5951         # change the states of some mirrored files
5952         echo foo > $tf-6
5953         for i in $(seq 2); do
5954                 dir=$td/dir$i
5955                 for j in $(seq 4 9); do
5956                         echo foo > $dir/$tfile-$j
5957                 done
5958         done
5959
5960         # find mirrored files with specific mirror count
5961         cmd="$LFS find --mirror-count 3 --type f $td"
5962         nfiles=$($cmd | wc -l)
5963         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
5964
5965         cmd="$LFS find ! --mirror-count 3 --type f $td"
5966         nfiles=$($cmd | wc -l)
5967         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
5968
5969         cmd="$LFS find --mirror-count +2 --type f $td"
5970         nfiles=$($cmd | wc -l)
5971         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5972
5973         cmd="$LFS find --mirror-count -6 --type f $td"
5974         nfiles=$($cmd | wc -l)
5975         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5976
5977         # find mirrored files with specific file state
5978         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
5979         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
5980
5981         cmd="$LFS find --mirror-state=ro --type f $td"
5982         nfiles=$($cmd | wc -l)
5983         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
5984
5985         cmd="$LFS find ! --mirror-state=ro --type f $td"
5986         nfiles=$($cmd | wc -l)
5987         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
5988
5989         cmd="$LFS find --mirror-state=wp --type f $td"
5990         nfiles=$($cmd | wc -l)
5991         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
5992
5993         cmd="$LFS find ! --mirror-state=sp --type f $td"
5994         nfiles=$($cmd | wc -l)
5995         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5996 }
5997 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
5998
5999 test_57a() {
6000         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6001         # note test will not do anything if MDS is not local
6002         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6003                 skip_env "ldiskfs only test"
6004         fi
6005         remote_mds_nodsh && skip "remote MDS with nodsh"
6006
6007         local MNTDEV="osd*.*MDT*.mntdev"
6008         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6009         [ -z "$DEV" ] && error "can't access $MNTDEV"
6010         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6011                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6012                         error "can't access $DEV"
6013                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6014                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6015                 rm $TMP/t57a.dump
6016         done
6017 }
6018 run_test 57a "verify MDS filesystem created with large inodes =="
6019
6020 test_57b() {
6021         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6022         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6023                 skip_env "ldiskfs only test"
6024         fi
6025         remote_mds_nodsh && skip "remote MDS with nodsh"
6026
6027         local dir=$DIR/$tdir
6028         local filecount=100
6029         local file1=$dir/f1
6030         local fileN=$dir/f$filecount
6031
6032         rm -rf $dir || error "removing $dir"
6033         test_mkdir -c1 $dir
6034         local mdtidx=$($LFS getstripe -m $dir)
6035         local mdtname=MDT$(printf %04x $mdtidx)
6036         local facet=mds$((mdtidx + 1))
6037
6038         echo "mcreating $filecount files"
6039         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6040
6041         # verify that files do not have EAs yet
6042         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6043                 error "$file1 has an EA"
6044         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6045                 error "$fileN has an EA"
6046
6047         sync
6048         sleep 1
6049         df $dir  #make sure we get new statfs data
6050         local mdsfree=$(do_facet $facet \
6051                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6052         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6053         local file
6054
6055         echo "opening files to create objects/EAs"
6056         for file in $(seq -f $dir/f%g 1 $filecount); do
6057                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6058                         error "opening $file"
6059         done
6060
6061         # verify that files have EAs now
6062         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6063         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6064
6065         sleep 1  #make sure we get new statfs data
6066         df $dir
6067         local mdsfree2=$(do_facet $facet \
6068                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6069         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6070
6071         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6072                 if [ "$mdsfree" != "$mdsfree2" ]; then
6073                         error "MDC before $mdcfree != after $mdcfree2"
6074                 else
6075                         echo "MDC before $mdcfree != after $mdcfree2"
6076                         echo "unable to confirm if MDS has large inodes"
6077                 fi
6078         fi
6079         rm -rf $dir
6080 }
6081 run_test 57b "default LOV EAs are stored inside large inodes ==="
6082
6083 test_58() {
6084         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6085         [ -z "$(which wiretest 2>/dev/null)" ] &&
6086                         skip_env "could not find wiretest"
6087
6088         wiretest
6089 }
6090 run_test 58 "verify cross-platform wire constants =============="
6091
6092 test_59() {
6093         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6094
6095         echo "touch 130 files"
6096         createmany -o $DIR/f59- 130
6097         echo "rm 130 files"
6098         unlinkmany $DIR/f59- 130
6099         sync
6100         # wait for commitment of removal
6101         wait_delete_completed
6102 }
6103 run_test 59 "verify cancellation of llog records async ========="
6104
6105 TEST60_HEAD="test_60 run $RANDOM"
6106 test_60a() {
6107         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6108         remote_mgs_nodsh && skip "remote MGS with nodsh"
6109         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6110                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6111                         skip_env "missing subtest run-llog.sh"
6112
6113         log "$TEST60_HEAD - from kernel mode"
6114         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6115         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6116         do_facet mgs $LCTL dk > $TMP/$tfile
6117
6118         # LU-6388: test llog_reader
6119         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6120         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6121         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6122                         skip_env "missing llog_reader"
6123         local fstype=$(facet_fstype mgs)
6124         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6125                 skip_env "Only for ldiskfs or zfs type mgs"
6126
6127         local mntpt=$(facet_mntpt mgs)
6128         local mgsdev=$(mgsdevname 1)
6129         local fid_list
6130         local fid
6131         local rec_list
6132         local rec
6133         local rec_type
6134         local obj_file
6135         local path
6136         local seq
6137         local oid
6138         local pass=true
6139
6140         #get fid and record list
6141         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6142                 tail -n 4))
6143         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6144                 tail -n 4))
6145         #remount mgs as ldiskfs or zfs type
6146         stop mgs || error "stop mgs failed"
6147         mount_fstype mgs || error "remount mgs failed"
6148         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6149                 fid=${fid_list[i]}
6150                 rec=${rec_list[i]}
6151                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6152                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6153                 oid=$((16#$oid))
6154
6155                 case $fstype in
6156                         ldiskfs )
6157                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6158                         zfs )
6159                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6160                 esac
6161                 echo "obj_file is $obj_file"
6162                 do_facet mgs $llog_reader $obj_file
6163
6164                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6165                         awk '{ print $3 }' | sed -e "s/^type=//g")
6166                 if [ $rec_type != $rec ]; then
6167                         echo "FAILED test_60a wrong record type $rec_type," \
6168                               "should be $rec"
6169                         pass=false
6170                         break
6171                 fi
6172
6173                 #check obj path if record type is LLOG_LOGID_MAGIC
6174                 if [ "$rec" == "1064553b" ]; then
6175                         path=$(do_facet mgs $llog_reader $obj_file |
6176                                 grep "path=" | awk '{ print $NF }' |
6177                                 sed -e "s/^path=//g")
6178                         if [ $obj_file != $mntpt/$path ]; then
6179                                 echo "FAILED test_60a wrong obj path" \
6180                                       "$montpt/$path, should be $obj_file"
6181                                 pass=false
6182                                 break
6183                         fi
6184                 fi
6185         done
6186         rm -f $TMP/$tfile
6187         #restart mgs before "error", otherwise it will block the next test
6188         stop mgs || error "stop mgs failed"
6189         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6190         $pass || error "test failed, see FAILED test_60a messages for specifics"
6191 }
6192 run_test 60a "llog_test run from kernel module and test llog_reader"
6193
6194 test_60aa() {
6195         remote_mgs_nodsh && skip "remote MGS with nodsh"
6196
6197         # test old logid format
6198         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6199                 do_facet mgs $LCTL dl | grep MGS
6200                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6201                         error "old llog_print failed"
6202         fi
6203
6204         # test new logid format
6205         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6206                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6207                         error "new llog_print failed"
6208         fi
6209 }
6210 run_test 60aa "llog_print works with FIDs and simple names"
6211
6212 test_60ab() {
6213         # test llog_print with params
6214
6215         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.11.51) ]] ||
6216                 skip "Need server version greater than 2.11.51"
6217
6218         local yaml
6219         local orig_val
6220
6221         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6222         do_facet mgs $LCTL set_param -P jobid_name="testname"
6223
6224         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6225             grep jobid_name | tail -n 1)
6226
6227         local param=`awk '{ print $10 }' <<< "$yaml"`
6228         local val=`awk '{ print $12 }' <<< "$yaml"`
6229         #return to the default
6230         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6231         [ $val = "testname" ] || error "bad value: $val"
6232         [ $param = "jobid_name," ] || error "Bad param: $param"
6233 }
6234 run_test 60ab "llog_print params output values from set_param -P"
6235
6236 test_60b() { # bug 6411
6237         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6238
6239         dmesg > $DIR/$tfile
6240         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6241                                 /llog.test/ {
6242                                         if (marker)
6243                                                 from_marker++
6244                                         from_begin++
6245                                 }
6246                                 END {
6247                                         if (marker)
6248                                                 print from_marker
6249                                         else
6250                                                 print from_begin
6251                                 }")
6252         [[ $LLOG_COUNT -gt 100 ]] &&
6253                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6254 }
6255 run_test 60b "limit repeated messages from CERROR/CWARN ========"
6256
6257 test_60c() {
6258         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6259
6260         echo "create 5000 files"
6261         createmany -o $DIR/f60c- 5000
6262 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6263         lctl set_param fail_loc=0x80000137
6264         unlinkmany $DIR/f60c- 5000
6265         lctl set_param fail_loc=0
6266 }
6267 run_test 60c "unlink file when mds full"
6268
6269 test_60d() {
6270         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6271
6272         SAVEPRINTK=$(lctl get_param -n printk)
6273         # verify "lctl mark" is even working"
6274         MESSAGE="test message ID $RANDOM $$"
6275         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6276         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6277
6278         lctl set_param printk=0 || error "set lnet.printk failed"
6279         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6280         MESSAGE="new test message ID $RANDOM $$"
6281         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6282         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6283         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6284
6285         lctl set_param -n printk="$SAVEPRINTK"
6286 }
6287 run_test 60d "test printk console message masking"
6288
6289 test_60e() {
6290         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6291         remote_mds_nodsh && skip "remote MDS with nodsh"
6292
6293         touch $DIR/$tfile
6294 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6295         do_facet mds1 lctl set_param fail_loc=0x15b
6296         rm $DIR/$tfile
6297 }
6298 run_test 60e "no space while new llog is being created"
6299
6300 test_61() {
6301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6302
6303         f="$DIR/f61"
6304         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
6305         cancel_lru_locks osc
6306         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6307         sync
6308 }
6309 run_test 61 "mmap() writes don't make sync hang ================"
6310
6311 # bug 2330 - insufficient obd_match error checking causes LBUG
6312 test_62() {
6313         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6314
6315         f="$DIR/f62"
6316         echo foo > $f
6317         cancel_lru_locks osc
6318         lctl set_param fail_loc=0x405
6319         cat $f && error "cat succeeded, expect -EIO"
6320         lctl set_param fail_loc=0
6321 }
6322 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6323 # match every page all of the time.
6324 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6325
6326 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6327 # Though this test is irrelevant anymore, it helped to reveal some
6328 # other grant bugs (LU-4482), let's keep it.
6329 test_63a() {   # was test_63
6330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6331
6332         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6333
6334         for i in `seq 10` ; do
6335                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6336                 sleep 5
6337                 kill $!
6338                 sleep 1
6339         done
6340
6341         rm -f $DIR/f63 || true
6342 }
6343 run_test 63a "Verify oig_wait interruption does not crash ======="
6344
6345 # bug 2248 - async write errors didn't return to application on sync
6346 # bug 3677 - async write errors left page locked
6347 test_63b() {
6348         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6349
6350         debugsave
6351         lctl set_param debug=-1
6352
6353         # ensure we have a grant to do async writes
6354         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6355         rm $DIR/$tfile
6356
6357         sync    # sync lest earlier test intercept the fail_loc
6358
6359         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6360         lctl set_param fail_loc=0x80000406
6361         $MULTIOP $DIR/$tfile Owy && \
6362                 error "sync didn't return ENOMEM"
6363         sync; sleep 2; sync     # do a real sync this time to flush page
6364         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6365                 error "locked page left in cache after async error" || true
6366         debugrestore
6367 }
6368 run_test 63b "async write errors should be returned to fsync ==="
6369
6370 test_64a () {
6371         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6372
6373         df $DIR
6374         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6375 }
6376 run_test 64a "verify filter grant calculations (in kernel) ====="
6377
6378 test_64b () {
6379         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6380
6381         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6382 }
6383 run_test 64b "check out-of-space detection on client"
6384
6385 test_64c() {
6386         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6387 }
6388 run_test 64c "verify grant shrink"
6389
6390 # this does exactly what osc_request.c:osc_announce_cached() does in
6391 # order to calculate max amount of grants to ask from server
6392 want_grant() {
6393         local tgt=$1
6394
6395         local page_size=$(get_page_size client)
6396
6397         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6398         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6399
6400         ((rpc_in_flight ++));
6401         nrpages=$((nrpages * rpc_in_flight))
6402
6403         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6404
6405         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / page_size))
6406
6407         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6408         local undirty=$((nrpages * page_size))
6409
6410         local max_extent_pages
6411         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6412             grep grant_max_extent_size | awk '{print $2}')
6413         max_extent_pages=$((max_extent_pages / page_size))
6414         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6415         local grant_extent_tax
6416         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6417             grep grant_extent_tax | awk '{print $2}')
6418
6419         undirty=$((undirty + nrextents * grant_extent_tax))
6420
6421         echo $undirty
6422 }
6423
6424 # this is size of unit for grant allocation. It should be equal to
6425 # what tgt_grant.c:tgt_grant_chunk() calculates
6426 grant_chunk() {
6427         local tgt=$1
6428         local max_brw_size
6429         local grant_extent_tax
6430
6431         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6432             grep max_brw_size | awk '{print $2}')
6433
6434         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6435             grep grant_extent_tax | awk '{print $2}')
6436
6437         echo $(((max_brw_size + grant_extent_tax) * 2))
6438 }
6439
6440 test_64d() {
6441         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6442                 skip "OST < 2.10.55 doesn't limit grants enough"
6443
6444         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6445         local file=$DIR/$tfile
6446
6447         [[ $($LCTL get_param osc.${tgt}.import |
6448              grep "connect_flags:.*grant_param") ]] ||
6449                 skip "no grant_param connect flag"
6450
6451         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6452
6453         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6454
6455         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6456         stack_trap "rm -f $file" EXIT
6457
6458         $SETSTRIPE $file -i 0 -c 1
6459         dd if=/dev/zero of=$file bs=1M count=1000 &
6460         ddpid=$!
6461
6462         while true
6463         do
6464                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6465                 if [[ $cur_grant -gt $max_cur_granted ]]
6466                 then
6467                         kill $ddpid
6468                         error "cur_grant $cur_grant > $max_cur_granted"
6469                 fi
6470                 kill -0 $ddpid
6471                 [[ $? -ne 0 ]] && break;
6472                 sleep 2
6473         done
6474
6475         rm -f $DIR/$tfile
6476         wait_delete_completed
6477         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6478 }
6479 run_test 64d "check grant limit exceed"
6480
6481 # bug 1414 - set/get directories' stripe info
6482 test_65a() {
6483         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6484
6485         test_mkdir $DIR/$tdir
6486         touch $DIR/$tdir/f1
6487         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6488 }
6489 run_test 65a "directory with no stripe info"
6490
6491 test_65b() {
6492         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6493
6494         test_mkdir $DIR/$tdir
6495         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6496
6497         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6498                                                 error "setstripe"
6499         touch $DIR/$tdir/f2
6500         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6501 }
6502 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6503
6504 test_65c() {
6505         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6506         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6507
6508         test_mkdir $DIR/$tdir
6509         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6510
6511         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6512                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6513         touch $DIR/$tdir/f3
6514         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6515 }
6516 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6517
6518 test_65d() {
6519         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6520
6521         test_mkdir $DIR/$tdir
6522         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6523         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6524
6525         if [[ $STRIPECOUNT -le 0 ]]; then
6526                 sc=1
6527         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6528 #LOV_MAX_STRIPE_COUNT is 2000
6529                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6530         else
6531                 sc=$(($STRIPECOUNT - 1))
6532         fi
6533         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6534         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6535         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6536                 error "lverify failed"
6537 }
6538 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6539
6540 test_65e() {
6541         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6542
6543         test_mkdir $DIR/$tdir
6544
6545         $SETSTRIPE $DIR/$tdir || error "setstripe"
6546         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6547                                         error "no stripe info failed"
6548         touch $DIR/$tdir/f6
6549         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6550 }
6551 run_test 65e "directory setstripe defaults"
6552
6553 test_65f() {
6554         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6555
6556         test_mkdir $DIR/${tdir}f
6557         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6558 }
6559 run_test 65f "dir setstripe permission (should return error) ==="
6560
6561 test_65g() {
6562         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6563
6564         test_mkdir $DIR/$tdir
6565         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6566
6567         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6568                 error "setstripe -S failed"
6569         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6570         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6571                 error "delete default stripe failed"
6572 }
6573 run_test 65g "directory setstripe -d"
6574
6575 test_65h() {
6576         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6577
6578         test_mkdir $DIR/$tdir
6579         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6580
6581         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6582                 error "setstripe -S failed"
6583         test_mkdir $DIR/$tdir/dd1
6584         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6585                 error "stripe info inherit failed"
6586 }
6587 run_test 65h "directory stripe info inherit ===================="
6588
6589 test_65i() {
6590         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6591
6592         save_layout_restore_at_exit $MOUNT
6593
6594         # bug6367: set non-default striping on root directory
6595         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6596
6597         # bug12836: getstripe on -1 default directory striping
6598         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6599
6600         # bug12836: getstripe -v on -1 default directory striping
6601         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6602
6603         # bug12836: new find on -1 default directory striping
6604         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6605 }
6606 run_test 65i "various tests to set root directory striping"
6607
6608 test_65j() { # bug6367
6609         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6610
6611         sync; sleep 1
6612
6613         # if we aren't already remounting for each test, do so for this test
6614         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6615                 cleanup || error "failed to unmount"
6616                 setup
6617         fi
6618
6619         save_layout_restore_at_exit $MOUNT
6620
6621         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6622 }
6623 run_test 65j "set default striping on root directory (bug 6367)="
6624
6625 cleaup_65k() {
6626         rm -rf $DIR/$tdir
6627         wait_delete_completed
6628         do_facet $SINGLEMDS "lctl set_param -n \
6629                 osp.$ost*MDT0000.max_create_count=$max_count"
6630         do_facet $SINGLEMDS "lctl set_param -n \
6631                 osp.$ost*MDT0000.create_count=$count"
6632         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6633         echo $INACTIVE_OSC "is Activate"
6634
6635         wait_osc_import_state mds ost$ostnum FULL
6636 }
6637
6638 test_65k() { # bug11679
6639         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6640         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6641         remote_mds_nodsh && skip "remote MDS with nodsh"
6642
6643         local disable_precreate=true
6644         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6645                 disable_precreate=false
6646
6647         echo "Check OST status: "
6648         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6649                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6650
6651         for OSC in $MDS_OSCS; do
6652                 echo $OSC "is active"
6653                 do_facet $SINGLEMDS lctl --device %$OSC activate
6654         done
6655
6656         for INACTIVE_OSC in $MDS_OSCS; do
6657                 local ost=$(osc_to_ost $INACTIVE_OSC)
6658                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6659                                lov.*md*.target_obd |
6660                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6661
6662                 mkdir -p $DIR/$tdir
6663                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6664                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6665
6666                 echo "Deactivate: " $INACTIVE_OSC
6667                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6668
6669                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6670                               osp.$ost*MDT0000.create_count")
6671                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6672                                   osp.$ost*MDT0000.max_create_count")
6673                 $disable_precreate &&
6674                         do_facet $SINGLEMDS "lctl set_param -n \
6675                                 osp.$ost*MDT0000.max_create_count=0"
6676
6677                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6678                         [ -f $DIR/$tdir/$idx ] && continue
6679                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6680                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6681                                 { cleanup_65k;
6682                                   error "setstripe $idx should succeed"; }
6683                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6684                 done
6685                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6686                 rmdir $DIR/$tdir
6687
6688                 do_facet $SINGLEMDS "lctl set_param -n \
6689                         osp.$ost*MDT0000.max_create_count=$max_count"
6690                 do_facet $SINGLEMDS "lctl set_param -n \
6691                         osp.$ost*MDT0000.create_count=$count"
6692                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6693                 echo $INACTIVE_OSC "is Activate"
6694
6695                 wait_osc_import_state mds ost$ostnum FULL
6696         done
6697 }
6698 run_test 65k "validate manual striping works properly with deactivated OSCs"
6699
6700 test_65l() { # bug 12836
6701         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6702
6703         test_mkdir -p $DIR/$tdir/test_dir
6704         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6705         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6706 }
6707 run_test 65l "lfs find on -1 stripe dir ========================"
6708
6709 test_65m() {
6710         local layout=$(save_layout $MOUNT)
6711         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6712                 restore_layout $MOUNT $layout
6713                 error "setstripe should fail by non-root users"
6714         }
6715         true
6716 }
6717 run_test 65m "normal user can't set filesystem default stripe"
6718
6719 # bug 2543 - update blocks count on client
6720 test_66() {
6721         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6722
6723         COUNT=${COUNT:-8}
6724         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6725         sync; sync_all_data; sync; sync_all_data
6726         cancel_lru_locks osc
6727         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6728         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6729 }
6730 run_test 66 "update inode blocks count on client ==============="
6731
6732 meminfo() {
6733         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6734 }
6735
6736 swap_used() {
6737         swapon -s | awk '($1 == "'$1'") { print $4 }'
6738 }
6739
6740 # bug5265, obdfilter oa2dentry return -ENOENT
6741 # #define OBD_FAIL_SRV_ENOENT 0x217
6742 test_69() {
6743         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6744         remote_ost_nodsh && skip "remote OST with nodsh"
6745
6746         f="$DIR/$tfile"
6747         $SETSTRIPE -c 1 -i 0 $f
6748
6749         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6750
6751         do_facet ost1 lctl set_param fail_loc=0x217
6752         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6753         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6754
6755         do_facet ost1 lctl set_param fail_loc=0
6756         $DIRECTIO write $f 0 2 || error "write error"
6757
6758         cancel_lru_locks osc
6759         $DIRECTIO read $f 0 1 || error "read error"
6760
6761         do_facet ost1 lctl set_param fail_loc=0x217
6762         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6763
6764         do_facet ost1 lctl set_param fail_loc=0
6765         rm -f $f
6766 }
6767 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6768
6769 test_71() {
6770         test_mkdir $DIR/$tdir
6771         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6772         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6773 }
6774 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6775
6776 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6777         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6778         [ "$RUNAS_ID" = "$UID" ] &&
6779                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6780         # Check that testing environment is properly set up. Skip if not
6781         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6782                 skip_env "User $RUNAS_ID does not exist - skipping"
6783
6784         touch $DIR/$tfile
6785         chmod 777 $DIR/$tfile
6786         chmod ug+s $DIR/$tfile
6787         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6788                 error "$RUNAS dd $DIR/$tfile failed"
6789         # See if we are still setuid/sgid
6790         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6791                 error "S/gid is not dropped on write"
6792         # Now test that MDS is updated too
6793         cancel_lru_locks mdc
6794         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6795                 error "S/gid is not dropped on MDS"
6796         rm -f $DIR/$tfile
6797 }
6798 run_test 72a "Test that remove suid works properly (bug5695) ===="
6799
6800 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6801         local perm
6802
6803         [ "$RUNAS_ID" = "$UID" ] &&
6804                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6805         [ "$RUNAS_ID" -eq 0 ] &&
6806                 skip_env "RUNAS_ID = 0 -- skipping"
6807         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6808         # Check that testing environment is properly set up. Skip if not
6809         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6810                 skip_env "User $RUNAS_ID does not exist - skipping"
6811
6812         touch $DIR/${tfile}-f{g,u}
6813         test_mkdir $DIR/${tfile}-dg
6814         test_mkdir $DIR/${tfile}-du
6815         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6816         chmod g+s $DIR/${tfile}-{f,d}g
6817         chmod u+s $DIR/${tfile}-{f,d}u
6818         for perm in 777 2777 4777; do
6819                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6820                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6821                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6822                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6823         done
6824         true
6825 }
6826 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6827
6828 # bug 3462 - multiple simultaneous MDC requests
6829 test_73() {
6830         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6831
6832         test_mkdir $DIR/d73-1
6833         test_mkdir $DIR/d73-2
6834         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6835         pid1=$!
6836
6837         lctl set_param fail_loc=0x80000129
6838         $MULTIOP $DIR/d73-1/f73-2 Oc &
6839         sleep 1
6840         lctl set_param fail_loc=0
6841
6842         $MULTIOP $DIR/d73-2/f73-3 Oc &
6843         pid3=$!
6844
6845         kill -USR1 $pid1
6846         wait $pid1 || return 1
6847
6848         sleep 25
6849
6850         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6851         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6852         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6853
6854         rm -rf $DIR/d73-*
6855 }
6856 run_test 73 "multiple MDC requests (should not deadlock)"
6857
6858 test_74a() { # bug 6149, 6184
6859         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6860
6861         touch $DIR/f74a
6862         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6863         #
6864         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6865         # will spin in a tight reconnection loop
6866         $LCTL set_param fail_loc=0x8000030e
6867         # get any lock that won't be difficult - lookup works.
6868         ls $DIR/f74a
6869         $LCTL set_param fail_loc=0
6870         rm -f $DIR/f74a
6871         true
6872 }
6873 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6874
6875 test_74b() { # bug 13310
6876         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6877
6878         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6879         #
6880         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6881         # will spin in a tight reconnection loop
6882         $LCTL set_param fail_loc=0x8000030e
6883         # get a "difficult" lock
6884         touch $DIR/f74b
6885         $LCTL set_param fail_loc=0
6886         rm -f $DIR/f74b
6887         true
6888 }
6889 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6890
6891 test_74c() {
6892         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6893
6894         #define OBD_FAIL_LDLM_NEW_LOCK
6895         $LCTL set_param fail_loc=0x319
6896         touch $DIR/$tfile && error "touch successful"
6897         $LCTL set_param fail_loc=0
6898         true
6899 }
6900 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6901
6902 num_inodes() {
6903         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6904 }
6905
6906 test_76() { # Now for bug 20433, added originally in bug 1443
6907         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6908
6909         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6910
6911         cancel_lru_locks osc
6912         BEFORE_INODES=$(num_inodes)
6913         echo "before inodes: $BEFORE_INODES"
6914         local COUNT=1000
6915         [ "$SLOW" = "no" ] && COUNT=100
6916         for i in $(seq $COUNT); do
6917                 touch $DIR/$tfile
6918                 rm -f $DIR/$tfile
6919         done
6920         cancel_lru_locks osc
6921         AFTER_INODES=$(num_inodes)
6922         echo "after inodes: $AFTER_INODES"
6923         local wait=0
6924         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6925                 sleep 2
6926                 AFTER_INODES=$(num_inodes)
6927                 wait=$((wait+2))
6928                 echo "wait $wait seconds inodes: $AFTER_INODES"
6929                 if [ $wait -gt 30 ]; then
6930                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6931                 fi
6932         done
6933 }
6934 run_test 76 "confirm clients recycle inodes properly ===="
6935
6936
6937 export ORIG_CSUM=""
6938 set_checksums()
6939 {
6940         # Note: in sptlrpc modes which enable its own bulk checksum, the
6941         # original crc32_le bulk checksum will be automatically disabled,
6942         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6943         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6944         # In this case set_checksums() will not be no-op, because sptlrpc
6945         # bulk checksum will be enabled all through the test.
6946
6947         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6948         lctl set_param -n osc.*.checksums $1
6949         return 0
6950 }
6951
6952 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6953                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6954 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6955                              tr -d [] | head -n1)}
6956 set_checksum_type()
6957 {
6958         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6959         log "set checksum type to $1"
6960         return 0
6961 }
6962 F77_TMP=$TMP/f77-temp
6963 F77SZ=8
6964 setup_f77() {
6965         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6966                 error "error writing to $F77_TMP"
6967 }
6968
6969 test_77a() { # bug 10889
6970         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6971         $GSS && skip_env "could not run with gss"
6972
6973         [ ! -f $F77_TMP ] && setup_f77
6974         set_checksums 1
6975         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6976         set_checksums 0
6977         rm -f $DIR/$tfile
6978 }
6979 run_test 77a "normal checksum read/write operation"
6980
6981 test_77b() { # bug 10889
6982         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6983         $GSS && skip_env "could not run with gss"
6984
6985         [ ! -f $F77_TMP ] && setup_f77
6986         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6987         $LCTL set_param fail_loc=0x80000409
6988         set_checksums 1
6989
6990         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6991                 error "dd error: $?"
6992         $LCTL set_param fail_loc=0
6993
6994         for algo in $CKSUM_TYPES; do
6995                 cancel_lru_locks osc
6996                 set_checksum_type $algo
6997                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6998                 $LCTL set_param fail_loc=0x80000408
6999                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7000                 $LCTL set_param fail_loc=0
7001         done
7002         set_checksums 0
7003         set_checksum_type $ORIG_CSUM_TYPE
7004         rm -f $DIR/$tfile
7005 }
7006 run_test 77b "checksum error on client write, read"
7007
7008 cleanup_77c() {
7009         trap 0
7010         set_checksums 0
7011         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7012         $check_ost &&
7013                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7014         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7015         $check_ost && [ -n "$ost_file_prefix" ] &&
7016                 do_facet ost1 rm -f ${ost_file_prefix}\*
7017 }
7018
7019 test_77c() {
7020         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7021         $GSS && skip_env "could not run with gss"
7022         remote_ost_nodsh && skip "remote OST with nodsh"
7023
7024         local bad1
7025         local osc_file_prefix
7026         local osc_file
7027         local check_ost=false
7028         local ost_file_prefix
7029         local ost_file
7030         local orig_cksum
7031         local dump_cksum
7032         local fid
7033
7034         # ensure corruption will occur on first OSS/OST
7035         $LFS setstripe -i 0 $DIR/$tfile
7036
7037         [ ! -f $F77_TMP ] && setup_f77
7038         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7039                 error "dd write error: $?"
7040         fid=$($LFS path2fid $DIR/$tfile)
7041
7042         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
7043         then
7044                 check_ost=true
7045                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7046                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7047         else
7048                 echo "OSS do not support bulk pages dump upon error"
7049         fi
7050
7051         osc_file_prefix=$($LCTL get_param -n debug_path)
7052         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7053
7054         trap cleanup_77c EXIT
7055
7056         set_checksums 1
7057         # enable bulk pages dump upon error on Client
7058         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7059         # enable bulk pages dump upon error on OSS
7060         $check_ost &&
7061                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7062
7063         # flush Client cache to allow next read to reach OSS
7064         cancel_lru_locks osc
7065
7066         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7067         $LCTL set_param fail_loc=0x80000408
7068         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7069         $LCTL set_param fail_loc=0
7070
7071         rm -f $DIR/$tfile
7072
7073         # check cksum dump on Client
7074         osc_file=$(ls ${osc_file_prefix}*)
7075         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7076         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7077         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7078         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7079         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7080                      cksum)
7081         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7082         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7083                 error "dump content does not match on Client"
7084
7085         $check_ost || skip "No need to check cksum dump on OSS"
7086
7087         # check cksum dump on OSS
7088         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7089         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7090         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7091         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7092         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7093                 error "dump content does not match on OSS"
7094
7095         cleanup_77c
7096 }
7097 run_test 77c "checksum error on client read with debug"
7098
7099 test_77d() { # bug 10889
7100         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7101         $GSS && skip_env "could not run with gss"
7102
7103         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7104         $LCTL set_param fail_loc=0x80000409
7105         set_checksums 1
7106         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7107                 error "direct write: rc=$?"
7108         $LCTL set_param fail_loc=0
7109         set_checksums 0
7110
7111         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7112         $LCTL set_param fail_loc=0x80000408
7113         set_checksums 1
7114         cancel_lru_locks osc
7115         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7116                 error "direct read: rc=$?"
7117         $LCTL set_param fail_loc=0
7118         set_checksums 0
7119 }
7120 run_test 77d "checksum error on OST direct write, read"
7121
7122 test_77f() { # bug 10889
7123         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7124         $GSS && skip_env "could not run with gss"
7125
7126         set_checksums 1
7127         for algo in $CKSUM_TYPES; do
7128                 cancel_lru_locks osc
7129                 set_checksum_type $algo
7130                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7131                 $LCTL set_param fail_loc=0x409
7132                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7133                         error "direct write succeeded"
7134                 $LCTL set_param fail_loc=0
7135         done
7136         set_checksum_type $ORIG_CSUM_TYPE
7137         set_checksums 0
7138 }
7139 run_test 77f "repeat checksum error on write (expect error)"
7140
7141 test_77g() { # bug 10889
7142         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7143         $GSS && skip_env "could not run with gss"
7144         remote_ost_nodsh && skip "remote OST with nodsh"
7145
7146         [ ! -f $F77_TMP ] && setup_f77
7147
7148         local file=$DIR/$tfile
7149         stack_trap "rm -f $file" EXIT
7150
7151         $SETSTRIPE -c 1 -i 0 $file
7152         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7153         do_facet ost1 lctl set_param fail_loc=0x8000021a
7154         set_checksums 1
7155         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7156                 error "write error: rc=$?"
7157         do_facet ost1 lctl set_param fail_loc=0
7158         set_checksums 0
7159
7160         cancel_lru_locks osc
7161         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7162         do_facet ost1 lctl set_param fail_loc=0x8000021b
7163         set_checksums 1
7164         cmp $F77_TMP $file || error "file compare failed"
7165         do_facet ost1 lctl set_param fail_loc=0
7166         set_checksums 0
7167 }
7168 run_test 77g "checksum error on OST write, read"
7169
7170 test_77j() { # bug 13805
7171         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7172         $GSS && skip_env "could not run with gss"
7173
7174         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
7175         lctl set_param fail_loc=0x40c
7176         remount_client $MOUNT
7177         lctl set_param fail_loc=0
7178         # wait async osc connect to finish and reflect updated state value
7179         local i
7180         for (( i=0; i < OSTCOUNT; i++ )) ; do
7181                 wait_osc_import_state client ost$((i+1)) FULL
7182         done
7183
7184         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
7185                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
7186                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
7187                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
7188         done
7189         remount_client $MOUNT
7190 }
7191 run_test 77j "client only supporting ADLER32"
7192
7193 test_77k() { # LU-10906
7194         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7195         $GSS && skip_env "could not run with gss"
7196
7197         local cksum_param="osc.$FSNAME*.checksums"
7198         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7199         local checksum
7200         local i
7201
7202         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7203         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7204         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7205                 EXIT
7206
7207         for i in 0 1; do
7208                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7209                         error "failed to set checksum=$i on MGS"
7210                 wait_update $HOSTNAME "$get_checksum" $i
7211                 #remount
7212                 echo "remount client, checksum should be $i"
7213                 remount_client $MOUNT || "failed to remount client"
7214                 checksum=$(eval $get_checksum)
7215                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7216         done
7217
7218         for opt in "checksum" "nochecksum"; do
7219                 #remount with mount option
7220                 echo "remount client with option $opt, checksum should be $i"
7221                 umount_client $MOUNT || "failed to umount client"
7222                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7223                         "failed to mount client with option '$opt'"
7224                 checksum=$(eval $get_checksum)
7225                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7226                 i=$((i - 1))
7227         done
7228
7229         remount_client $MOUNT || "failed to remount client"
7230 }
7231 run_test 77k "enable/disable checksum correctly"
7232
7233 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7234 rm -f $F77_TMP
7235 unset F77_TMP
7236
7237 cleanup_test_78() {
7238         trap 0
7239         rm -f $DIR/$tfile
7240 }
7241
7242 test_78() { # bug 10901
7243         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7244         remote_ost || skip_env "local OST"
7245
7246         NSEQ=5
7247         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7248         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7249         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7250         echo "MemTotal: $MEMTOTAL"
7251
7252         # reserve 256MB of memory for the kernel and other running processes,
7253         # and then take 1/2 of the remaining memory for the read/write buffers.
7254         if [ $MEMTOTAL -gt 512 ] ;then
7255                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7256         else
7257                 # for those poor memory-starved high-end clusters...
7258                 MEMTOTAL=$((MEMTOTAL / 2))
7259         fi
7260         echo "Mem to use for directio: $MEMTOTAL"
7261
7262         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7263         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7264         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7265         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7266                 head -n1)
7267         echo "Smallest OST: $SMALLESTOST"
7268         [[ $SMALLESTOST -lt 10240 ]] &&
7269                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7270
7271         trap cleanup_test_78 EXIT
7272
7273         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7274                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7275
7276         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7277         echo "File size: $F78SIZE"
7278         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7279         for i in $(seq 1 $NSEQ); do
7280                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7281                 echo directIO rdwr round $i of $NSEQ
7282                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7283         done
7284
7285         cleanup_test_78
7286 }
7287 run_test 78 "handle large O_DIRECT writes correctly ============"
7288
7289 test_79() { # bug 12743
7290         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7291
7292         wait_delete_completed
7293
7294         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7295         BKFREE=$(calc_osc_kbytes kbytesfree)
7296         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7297
7298         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7299         DFTOTAL=`echo $STRING | cut -d, -f1`
7300         DFUSED=`echo $STRING  | cut -d, -f2`
7301         DFAVAIL=`echo $STRING | cut -d, -f3`
7302         DFFREE=$(($DFTOTAL - $DFUSED))
7303
7304         ALLOWANCE=$((64 * $OSTCOUNT))
7305
7306         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7307            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7308                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7309         fi
7310         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7311            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7312                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7313         fi
7314         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7315            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7316                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7317         fi
7318 }
7319 run_test 79 "df report consistency check ======================="
7320
7321 test_80() { # bug 10718
7322         remote_ost_nodsh && skip "remote OST with nodsh"
7323         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7324
7325         # relax strong synchronous semantics for slow backends like ZFS
7326         local soc="obdfilter.*.sync_on_lock_cancel"
7327         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7328         local hosts=
7329         if [ "$soc_old" != "never" ] &&
7330                 [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
7331                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7332                                 facet_active_host $host; done | sort -u)
7333                         do_nodes $hosts lctl set_param $soc=never
7334         fi
7335
7336         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7337         sync; sleep 1; sync
7338         local BEFORE=`date +%s`
7339         cancel_lru_locks osc
7340         local AFTER=`date +%s`
7341         local DIFF=$((AFTER-BEFORE))
7342         if [ $DIFF -gt 1 ] ; then
7343                 error "elapsed for 1M@1T = $DIFF"
7344         fi
7345
7346         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7347
7348         rm -f $DIR/$tfile
7349 }
7350 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7351
7352 test_81a() { # LU-456
7353         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7354         remote_ost_nodsh && skip "remote OST with nodsh"
7355
7356         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7357         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7358         do_facet ost1 lctl set_param fail_loc=0x80000228
7359
7360         # write should trigger a retry and success
7361         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7362         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7363         RC=$?
7364         if [ $RC -ne 0 ] ; then
7365                 error "write should success, but failed for $RC"
7366         fi
7367 }
7368 run_test 81a "OST should retry write when get -ENOSPC ==============="
7369
7370 test_81b() { # LU-456
7371         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7372         remote_ost_nodsh && skip "remote OST with nodsh"
7373
7374         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7375         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7376         do_facet ost1 lctl set_param fail_loc=0x228
7377
7378         # write should retry several times and return -ENOSPC finally
7379         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7380         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7381         RC=$?
7382         ENOSPC=28
7383         if [ $RC -ne $ENOSPC ] ; then
7384                 error "dd should fail for -ENOSPC, but succeed."
7385         fi
7386 }
7387 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7388
7389 test_82() { # LU-1031
7390         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7391         local gid1=14091995
7392         local gid2=16022000
7393
7394         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7395         local MULTIPID1=$!
7396         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7397         local MULTIPID2=$!
7398         kill -USR1 $MULTIPID2
7399         sleep 2
7400         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7401                 error "First grouplock does not block second one"
7402         else
7403                 echo "Second grouplock blocks first one"
7404         fi
7405         kill -USR1 $MULTIPID1
7406         wait $MULTIPID1
7407         wait $MULTIPID2
7408 }
7409 run_test 82 "Basic grouplock test"
7410
7411 test_83() {
7412         local sfile="/boot/System.map-$(uname -r)"
7413         [ ! -f $sfile ] && skip "No $sfile found"
7414         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7415         $LCTL set_param fail_loc=0x140d
7416         cp $sfile $DIR/$tfile || error "write failed"
7417         diff -c $sfile $DIR/$tfile || error "files are different"
7418         $LCTL set_param fail_loc=0
7419         rm -f $DIR/$tfile
7420 }
7421 run_test 83 "Short write in ptask ==============================="
7422
7423 test_99() {
7424         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7425
7426         test_mkdir $DIR/$tdir.cvsroot
7427         chown $RUNAS_ID $DIR/$tdir.cvsroot
7428
7429         cd $TMP
7430         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7431
7432         cd /etc/init.d
7433         # some versions of cvs import exit(1) when asked to import links or
7434         # files they can't read.  ignore those files.
7435         local toignore=$(find . -type l -printf '-I %f\n' -o \
7436                          ! -perm /4 -printf '-I %f\n')
7437         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7438                 $tdir.reposname vtag rtag
7439
7440         cd $DIR
7441         test_mkdir $DIR/$tdir.reposname
7442         chown $RUNAS_ID $DIR/$tdir.reposname
7443         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7444
7445         cd $DIR/$tdir.reposname
7446         $RUNAS touch foo99
7447         $RUNAS cvs add -m 'addmsg' foo99
7448         $RUNAS cvs update
7449         $RUNAS cvs commit -m 'nomsg' foo99
7450         rm -fr $DIR/$tdir.cvsroot
7451 }
7452 run_test 99 "cvs strange file/directory operations"
7453
7454 test_100() {
7455         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7456         [[ "$NETTYPE" =~ tcp ]] ||
7457                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7458         remote_ost_nodsh && skip "remote OST with nodsh"
7459         remote_mds_nodsh && skip "remote MDS with nodsh"
7460         remote_servers ||
7461                 skip "useless for local single node setup"
7462
7463         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7464                 [ "$PROT" != "tcp" ] && continue
7465                 RPORT=$(echo $REMOTE | cut -d: -f2)
7466                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7467
7468                 rc=0
7469                 LPORT=`echo $LOCAL | cut -d: -f2`
7470                 if [ $LPORT -ge 1024 ]; then
7471                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7472                         netstat -tna
7473                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7474                 fi
7475         done
7476         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7477 }
7478 run_test 100 "check local port using privileged port ==========="
7479
7480 function get_named_value()
7481 {
7482     local tag
7483
7484     tag=$1
7485     while read ;do
7486         line=$REPLY
7487         case $line in
7488         $tag*)
7489             echo $line | sed "s/^$tag[ ]*//"
7490             break
7491             ;;
7492         esac
7493     done
7494 }
7495
7496 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7497                    awk '/^max_cached_mb/ { print $2 }')
7498
7499 cleanup_101a() {
7500         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7501         trap 0
7502 }
7503
7504 test_101a() {
7505         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7506         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7507
7508         local s
7509         local discard
7510         local nreads=10000
7511         local cache_limit=32
7512
7513         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7514         trap cleanup_101a EXIT
7515         $LCTL set_param -n llite.*.read_ahead_stats 0
7516         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7517
7518         #
7519         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7520         #
7521         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7522         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7523
7524         discard=0
7525         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7526                 get_named_value 'read but discarded' | cut -d" " -f1); do
7527                         discard=$(($discard + $s))
7528         done
7529         cleanup_101a
7530
7531         if [[ $(($discard * 10)) -gt $nreads ]]; then
7532                 $LCTL get_param osc.*-osc*.rpc_stats
7533                 $LCTL get_param llite.*.read_ahead_stats
7534                 error "too many ($discard) discarded pages"
7535         fi
7536         rm -f $DIR/$tfile || true
7537 }
7538 run_test 101a "check read-ahead for random reads"
7539
7540 setup_test101bc() {
7541         test_mkdir $DIR/$tdir
7542         local STRIPE_SIZE=$1
7543         local FILE_LENGTH=$2
7544         STRIPE_OFFSET=0
7545
7546         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7547
7548         local list=$(comma_list $(osts_nodes))
7549         set_osd_param $list '' read_cache_enable 0
7550         set_osd_param $list '' writethrough_cache_enable 0
7551
7552         trap cleanup_test101bc EXIT
7553         # prepare the read-ahead file
7554         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7555
7556         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7557                                 count=$FILE_SIZE_MB 2> /dev/null
7558
7559 }
7560
7561 cleanup_test101bc() {
7562         trap 0
7563         rm -rf $DIR/$tdir
7564         rm -f $DIR/$tfile
7565
7566         local list=$(comma_list $(osts_nodes))
7567         set_osd_param $list '' read_cache_enable 1
7568         set_osd_param $list '' writethrough_cache_enable 1
7569 }
7570
7571 calc_total() {
7572         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7573 }
7574
7575 ra_check_101() {
7576         local READ_SIZE=$1
7577         local STRIPE_SIZE=$2
7578         local FILE_LENGTH=$3
7579         local RA_INC=1048576
7580         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7581         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7582                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7583         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7584                         get_named_value 'read but discarded' |
7585                         cut -d" " -f1 | calc_total)
7586         if [[ $DISCARD -gt $discard_limit ]]; then
7587                 $LCTL get_param llite.*.read_ahead_stats
7588                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7589         else
7590                 echo "Read-ahead success for size ${READ_SIZE}"
7591         fi
7592 }
7593
7594 test_101b() {
7595         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7596         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7597
7598         local STRIPE_SIZE=1048576
7599         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7600
7601         if [ $SLOW == "yes" ]; then
7602                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7603         else
7604                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7605         fi
7606
7607         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7608
7609         # prepare the read-ahead file
7610         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7611         cancel_lru_locks osc
7612         for BIDX in 2 4 8 16 32 64 128 256
7613         do
7614                 local BSIZE=$((BIDX*4096))
7615                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7616                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7617                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7618                 $LCTL set_param -n llite.*.read_ahead_stats 0
7619                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7620                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7621                 cancel_lru_locks osc
7622                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7623         done
7624         cleanup_test101bc
7625         true
7626 }
7627 run_test 101b "check stride-io mode read-ahead ================="
7628
7629 test_101c() {
7630         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7631
7632         local STRIPE_SIZE=1048576
7633         local FILE_LENGTH=$((STRIPE_SIZE*100))
7634         local nreads=10000
7635         local osc_rpc_stats
7636
7637         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7638
7639         cancel_lru_locks osc
7640         $LCTL set_param osc.*.rpc_stats 0
7641         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7642         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7643                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7644                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7645                 local size
7646
7647                 if [ $lines -le 20 ]; then
7648                         continue
7649                 fi
7650                 for size in 1 2 4 8; do
7651                         local rpc=$(echo "$stats" |
7652                                     awk '($1 == "'$size':") {print $2; exit; }')
7653                         [ $rpc != 0 ] &&
7654                                 error "Small $((size*4))k read IO $rpc !"
7655                 done
7656                 echo "$osc_rpc_stats check passed!"
7657         done
7658         cleanup_test101bc
7659         true
7660 }
7661 run_test 101c "check stripe_size aligned read-ahead ================="
7662
7663 set_read_ahead() {
7664         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7665         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7666 }
7667
7668 test_101d() {
7669         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7670
7671         local file=$DIR/$tfile
7672         local sz_MB=${FILESIZE_101d:-500}
7673         local ra_MB=${READAHEAD_MB:-40}
7674
7675         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7676         [ $free_MB -lt $sz_MB ] &&
7677                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7678
7679         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7680         $SETSTRIPE -c -1 $file || error "setstripe failed"
7681
7682         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7683         echo Cancel LRU locks on lustre client to flush the client cache
7684         cancel_lru_locks osc
7685
7686         echo Disable read-ahead
7687         local old_READAHEAD=$(set_read_ahead 0)
7688
7689         echo Reading the test file $file with read-ahead disabled
7690         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7691
7692         echo Cancel LRU locks on lustre client to flush the client cache
7693         cancel_lru_locks osc
7694         echo Enable read-ahead with ${ra_MB}MB
7695         set_read_ahead $ra_MB
7696
7697         echo Reading the test file $file with read-ahead enabled
7698         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7699
7700         echo "read-ahead disabled time read $raOFF"
7701         echo "read-ahead enabled  time read $raON"
7702
7703         set_read_ahead $old_READAHEAD
7704         rm -f $file
7705         wait_delete_completed
7706
7707         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7708                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7709 }
7710 run_test 101d "file read with and without read-ahead enabled"
7711
7712 test_101e() {
7713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7714
7715         local file=$DIR/$tfile
7716         local size_KB=500  #KB
7717         local count=100
7718         local bsize=1024
7719
7720         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7721         local need_KB=$((count * size_KB))
7722         [[ $free_KB -le $need_KB ]] &&
7723                 skip_env "Need free space $need_KB, have $free_KB"
7724
7725         echo "Creating $count ${size_KB}K test files"
7726         for ((i = 0; i < $count; i++)); do
7727                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7728         done
7729
7730         echo "Cancel LRU locks on lustre client to flush the client cache"
7731         cancel_lru_locks $OSC
7732
7733         echo "Reset readahead stats"
7734         $LCTL set_param -n llite.*.read_ahead_stats 0
7735
7736         for ((i = 0; i < $count; i++)); do
7737                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7738         done
7739
7740         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7741                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7742
7743         for ((i = 0; i < $count; i++)); do
7744                 rm -rf $file.$i 2>/dev/null
7745         done
7746
7747         #10000 means 20% reads are missing in readahead
7748         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7749 }
7750 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7751
7752 test_101f() {
7753         which iozone || skip_env "no iozone installed"
7754
7755         local old_debug=$($LCTL get_param debug)
7756         old_debug=${old_debug#*=}
7757         $LCTL set_param debug="reada mmap"
7758
7759         # create a test file
7760         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7761
7762         echo Cancel LRU locks on lustre client to flush the client cache
7763         cancel_lru_locks osc
7764
7765         echo Reset readahead stats
7766         $LCTL set_param -n llite.*.read_ahead_stats 0
7767
7768         echo mmap read the file with small block size
7769         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7770                 > /dev/null 2>&1
7771
7772         echo checking missing pages
7773         $LCTL get_param llite.*.read_ahead_stats
7774         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7775                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7776
7777         $LCTL set_param debug="$old_debug"
7778         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7779         rm -f $DIR/$tfile
7780 }
7781 run_test 101f "check mmap read performance"
7782
7783 test_101g_brw_size_test() {
7784         local mb=$1
7785         local pages=$((mb * 1048576 / $(page_size)))
7786         local file=$DIR/$tfile
7787
7788         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7789                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7790         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7791                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7792                         return 2
7793         done
7794
7795         stack_trap "rm -f $file" EXIT
7796         $LCTL set_param -n osc.*.rpc_stats=0
7797
7798         # 10 RPCs should be enough for the test
7799         local count=10
7800         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7801                 { error "dd write ${mb} MB blocks failed"; return 3; }
7802         cancel_lru_locks osc
7803         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7804                 { error "dd write ${mb} MB blocks failed"; return 4; }
7805
7806         # calculate number of full-sized read and write RPCs
7807         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7808                 sed -n '/pages per rpc/,/^$/p' |
7809                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7810                 END { print reads,writes }'))
7811         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7812                 return 5
7813         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7814                 return 6
7815
7816         return 0
7817 }
7818
7819 test_101g() {
7820         remote_ost_nodsh && skip "remote OST with nodsh"
7821
7822         local rpcs
7823         local osts=$(get_facets OST)
7824         local list=$(comma_list $(osts_nodes))
7825         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7826         local brw_size="obdfilter.*.brw_size"
7827         local ostver=$(lustre_version_code ost1)
7828         local cliver=$(lustre_version_code client)
7829
7830         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7831
7832         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7833         if [ $ostver -ge $(version_code 2.8.52) -o \
7834              \( $ostver -ge $(version_code 2.7.17) -a \
7835                 $ostver -lt $(version_code 2.7.50) \) ] &&
7836            [ $cliver -ge $(version_code 2.8.52) -o \
7837              \( $cliver -ge $(version_code 2.7.17) -a \
7838                 $cliver -lt $(version_code 2.7.50) \) ]; then
7839                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7840                 if [[ $orig_mb -lt 16 ]]; then
7841                         save_lustre_params $osts "$brw_size" > $p
7842                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7843                                 error "set 16MB RPC size failed"
7844
7845                         echo "remount client to enable new RPC size"
7846                         remount_client $MOUNT || error "remount_client failed"
7847                 fi
7848
7849                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7850                 # should be able to set brw_size=12, but no rpc_stats for that
7851                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7852         fi
7853
7854         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7855
7856         if [[ $orig_mb -lt 16 ]]; then
7857                 restore_lustre_params < $p
7858                 remount_client $MOUNT || error "remount_client restore failed"
7859         fi
7860
7861         rm -f $p $DIR/$tfile
7862 }
7863 run_test 101g "Big bulk(4/16 MiB) readahead"
7864
7865 setup_test102() {
7866         test_mkdir $DIR/$tdir
7867         chown $RUNAS_ID $DIR/$tdir
7868         STRIPE_SIZE=65536
7869         STRIPE_OFFSET=1
7870         STRIPE_COUNT=$OSTCOUNT
7871         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7872
7873         trap cleanup_test102 EXIT
7874         cd $DIR
7875         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7876         cd $DIR/$tdir
7877         for num in 1 2 3 4; do
7878                 for count in $(seq 1 $STRIPE_COUNT); do
7879                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7880                                 local size=`expr $STRIPE_SIZE \* $num`
7881                                 local file=file"$num-$idx-$count"
7882                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7883                         done
7884                 done
7885         done
7886
7887         cd $DIR
7888         $1 tar cf $TMP/f102.tar $tdir --xattrs
7889 }
7890
7891 cleanup_test102() {
7892         trap 0
7893         rm -f $TMP/f102.tar
7894         rm -rf $DIR/d0.sanity/d102
7895 }
7896
7897 test_102a() {
7898         [ "$UID" != 0 ] && skip "must run as root"
7899         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7900                 skip_env "must have user_xattr"
7901
7902         [ -z "$(which setfattr 2>/dev/null)" ] &&
7903                 skip_env "could not find setfattr"
7904
7905         local testfile=$DIR/$tfile
7906
7907         touch $testfile
7908         echo "set/get xattr..."
7909         setfattr -n trusted.name1 -v value1 $testfile ||
7910                 error "setfattr -n trusted.name1=value1 $testfile failed"
7911         getfattr -n trusted.name1 $testfile 2> /dev/null |
7912           grep "trusted.name1=.value1" ||
7913                 error "$testfile missing trusted.name1=value1"
7914
7915         setfattr -n user.author1 -v author1 $testfile ||
7916                 error "setfattr -n user.author1=author1 $testfile failed"
7917         getfattr -n user.author1 $testfile 2> /dev/null |
7918           grep "user.author1=.author1" ||
7919                 error "$testfile missing trusted.author1=author1"
7920
7921         echo "listxattr..."
7922         setfattr -n trusted.name2 -v value2 $testfile ||
7923                 error "$testfile unable to set trusted.name2"
7924         setfattr -n trusted.name3 -v value3 $testfile ||
7925                 error "$testfile unable to set trusted.name3"
7926         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7927             grep "trusted.name" | wc -l) -eq 3 ] ||
7928                 error "$testfile missing 3 trusted.name xattrs"
7929
7930         setfattr -n user.author2 -v author2 $testfile ||
7931                 error "$testfile unable to set user.author2"
7932         setfattr -n user.author3 -v author3 $testfile ||
7933                 error "$testfile unable to set user.author3"
7934         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7935             grep "user.author" | wc -l) -eq 3 ] ||
7936                 error "$testfile missing 3 user.author xattrs"
7937
7938         echo "remove xattr..."
7939         setfattr -x trusted.name1 $testfile ||
7940                 error "$testfile error deleting trusted.name1"
7941         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7942                 error "$testfile did not delete trusted.name1 xattr"
7943
7944         setfattr -x user.author1 $testfile ||
7945                 error "$testfile error deleting user.author1"
7946         echo "set lustre special xattr ..."
7947         $LFS setstripe -c1 $testfile
7948         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7949                 awk -F "=" '/trusted.lov/ { print $2 }' )
7950         setfattr -n "trusted.lov" -v $lovea $testfile ||
7951                 error "$testfile doesn't ignore setting trusted.lov again"
7952         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7953                 error "$testfile allow setting invalid trusted.lov"
7954         rm -f $testfile
7955 }
7956 run_test 102a "user xattr test =================================="
7957
7958 test_102b() {
7959         [ -z "$(which setfattr 2>/dev/null)" ] &&
7960                 skip_env "could not find setfattr"
7961         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7962
7963         # b10930: get/set/list trusted.lov xattr
7964         echo "get/set/list trusted.lov xattr ..."
7965         local testfile=$DIR/$tfile
7966         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7967                 error "setstripe failed"
7968         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7969                 error "getstripe failed"
7970         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7971                 error "can't get trusted.lov from $testfile"
7972
7973         local testfile2=${testfile}2
7974         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7975                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7976
7977         $MCREATE $testfile2
7978         setfattr -n trusted.lov -v $value $testfile2
7979         local stripe_size=$($GETSTRIPE -S $testfile2)
7980         local stripe_count=$($GETSTRIPE -c $testfile2)
7981         [[ $stripe_size -eq 65536 ]] ||
7982                 error "stripe size $stripe_size != 65536"
7983         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7984                 error "stripe count $stripe_count != $STRIPECOUNT"
7985         rm -f $DIR/$tfile
7986 }
7987 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7988
7989 test_102c() {
7990         [ -z "$(which setfattr 2>/dev/null)" ] &&
7991                 skip_env "could not find setfattr"
7992         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7993
7994         # b10930: get/set/list lustre.lov xattr
7995         echo "get/set/list lustre.lov xattr ..."
7996         test_mkdir $DIR/$tdir
7997         chown $RUNAS_ID $DIR/$tdir
7998         local testfile=$DIR/$tdir/$tfile
7999         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8000                 error "setstripe failed"
8001         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
8002                 error "getstripe failed"
8003         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8004         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8005
8006         local testfile2=${testfile}2
8007         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8008                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8009
8010         $RUNAS $MCREATE $testfile2
8011         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8012         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8013         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8014         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8015         [ $stripe_count -eq $STRIPECOUNT ] ||
8016                 error "stripe count $stripe_count != $STRIPECOUNT"
8017 }
8018 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8019
8020 compare_stripe_info1() {
8021         local stripe_index_all_zero=true
8022
8023         for num in 1 2 3 4; do
8024                 for count in $(seq 1 $STRIPE_COUNT); do
8025                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8026                                 local size=$((STRIPE_SIZE * num))
8027                                 local file=file"$num-$offset-$count"
8028                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8029                                 [[ $stripe_size -ne $size ]] &&
8030                                     error "$file: size $stripe_size != $size"
8031                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8032                                 # allow fewer stripes to be created, ORI-601
8033                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8034                                     error "$file: count $stripe_count != $count"
8035                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8036                                 [[ $stripe_index -ne 0 ]] &&
8037                                         stripe_index_all_zero=false
8038                         done
8039                 done
8040         done
8041         $stripe_index_all_zero &&
8042                 error "all files are being extracted starting from OST index 0"
8043         return 0
8044 }
8045
8046 have_xattrs_include() {
8047         tar --help | grep -q xattrs-include &&
8048                 echo --xattrs-include="lustre.*"
8049 }
8050
8051 test_102d() {
8052         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8053         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8054
8055         XINC=$(have_xattrs_include)
8056         setup_test102
8057         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8058         cd $DIR/$tdir/$tdir
8059         compare_stripe_info1
8060 }
8061 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8062
8063 test_102f() {
8064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8065         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8066
8067         XINC=$(have_xattrs_include)
8068         setup_test102
8069         test_mkdir $DIR/$tdir.restore
8070         cd $DIR
8071         tar cf - --xattrs $tdir | tar xf - \
8072                 -C $DIR/$tdir.restore --xattrs $XINC
8073         cd $DIR/$tdir.restore/$tdir
8074         compare_stripe_info1
8075 }
8076 run_test 102f "tar copy files, not keep osts"
8077
8078 grow_xattr() {
8079         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8080                 skip "must have user_xattr"
8081         [ -z "$(which setfattr 2>/dev/null)" ] &&
8082                 skip_env "could not find setfattr"
8083         [ -z "$(which getfattr 2>/dev/null)" ] &&
8084                 skip_env "could not find getfattr"
8085
8086         local xsize=${1:-1024}  # in bytes
8087         local file=$DIR/$tfile
8088         local value="$(generate_string $xsize)"
8089         local xbig=trusted.big
8090
8091         touch $file
8092         log "save $xbig on $file"
8093         setfattr -n $xbig -v $value $file ||
8094                 error "saving $xbig on $file failed"
8095
8096         local orig=$(get_xattr_value $xbig $file)
8097         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8098
8099         local xsml=trusted.sml
8100         log "save $xsml on $file"
8101         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8102
8103         local new=$(get_xattr_value $xbig $file)
8104         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8105
8106         log "grow $xsml on $file"
8107         setfattr -n $xsml -v "$value" $file ||
8108                 error "growing $xsml on $file failed"
8109
8110         new=$(get_xattr_value $xbig $file)
8111         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8112         log "$xbig still valid after growing $xsml"
8113
8114         rm -f $file
8115 }
8116
8117 test_102h() { # bug 15777
8118         grow_xattr 1024
8119 }
8120 run_test 102h "grow xattr from inside inode to external block"
8121
8122 test_102ha() {
8123         large_xattr_enabled || skip_env "large_xattr disabled"
8124
8125         grow_xattr $(max_xattr_size)
8126 }
8127 run_test 102ha "grow xattr from inside inode to external inode"
8128
8129 test_102i() { # bug 17038
8130         [ -z "$(which getfattr 2>/dev/null)" ] &&
8131                 skip "could not find getfattr"
8132
8133         touch $DIR/$tfile
8134         ln -s $DIR/$tfile $DIR/${tfile}link
8135         getfattr -n trusted.lov $DIR/$tfile ||
8136                 error "lgetxattr on $DIR/$tfile failed"
8137         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8138                 grep -i "no such attr" ||
8139                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8140         rm -f $DIR/$tfile $DIR/${tfile}link
8141 }
8142 run_test 102i "lgetxattr test on symbolic link ============"
8143
8144 test_102j() {
8145         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8146         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8147
8148         XINC=$(have_xattrs_include)
8149         setup_test102 "$RUNAS"
8150         chown $RUNAS_ID $DIR/$tdir
8151         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8152         cd $DIR/$tdir/$tdir
8153         compare_stripe_info1 "$RUNAS"
8154 }
8155 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8156
8157 test_102k() {
8158         [ -z "$(which setfattr 2>/dev/null)" ] &&
8159                 skip "could not find setfattr"
8160
8161         touch $DIR/$tfile
8162         # b22187 just check that does not crash for regular file.
8163         setfattr -n trusted.lov $DIR/$tfile
8164         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8165         local test_kdir=$DIR/$tdir
8166         test_mkdir $test_kdir
8167         local default_size=$($LFS getstripe -S $test_kdir)
8168         local default_count=$($LFS getstripe -c $test_kdir)
8169         local default_offset=$($LFS getstripe -i $test_kdir)
8170         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8171                 error 'dir setstripe failed'
8172         setfattr -n trusted.lov $test_kdir
8173         local stripe_size=$($LFS getstripe -S $test_kdir)
8174         local stripe_count=$($LFS getstripe -c $test_kdir)
8175         local stripe_offset=$($LFS getstripe -i $test_kdir)
8176         [ $stripe_size -eq $default_size ] ||
8177                 error "stripe size $stripe_size != $default_size"
8178         [ $stripe_count -eq $default_count ] ||
8179                 error "stripe count $stripe_count != $default_count"
8180         [ $stripe_offset -eq $default_offset ] ||
8181                 error "stripe offset $stripe_offset != $default_offset"
8182         rm -rf $DIR/$tfile $test_kdir
8183 }
8184 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8185
8186 test_102l() {
8187         [ -z "$(which getfattr 2>/dev/null)" ] &&
8188                 skip "could not find getfattr"
8189
8190         # LU-532 trusted. xattr is invisible to non-root
8191         local testfile=$DIR/$tfile
8192
8193         touch $testfile
8194
8195         echo "listxattr as user..."
8196         chown $RUNAS_ID $testfile
8197         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8198             grep -q "trusted" &&
8199                 error "$testfile trusted xattrs are user visible"
8200
8201         return 0;
8202 }
8203 run_test 102l "listxattr size test =================================="
8204
8205 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8206         local path=$DIR/$tfile
8207         touch $path
8208
8209         listxattr_size_check $path || error "listattr_size_check $path failed"
8210 }
8211 run_test 102m "Ensure listxattr fails on small bufffer ========"
8212
8213 cleanup_test102
8214
8215 getxattr() { # getxattr path name
8216         # Return the base64 encoding of the value of xattr name on path.
8217         local path=$1
8218         local name=$2
8219
8220         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8221         # file: $path
8222         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8223         #
8224         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8225
8226         getfattr --absolute-names --encoding=base64 --name=$name $path |
8227                 awk -F= -v name=$name '$1 == name {
8228                         print substr($0, index($0, "=") + 1);
8229         }'
8230 }
8231
8232 test_102n() { # LU-4101 mdt: protect internal xattrs
8233         [ -z "$(which setfattr 2>/dev/null)" ] &&
8234                 skip "could not find setfattr"
8235         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8236         then
8237                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8238         fi
8239
8240         local file0=$DIR/$tfile.0
8241         local file1=$DIR/$tfile.1
8242         local xattr0=$TMP/$tfile.0
8243         local xattr1=$TMP/$tfile.1
8244         local namelist="lov lma lmv link fid version som hsm"
8245         local name
8246         local value
8247
8248         rm -rf $file0 $file1 $xattr0 $xattr1
8249         touch $file0 $file1
8250
8251         # Get 'before' xattrs of $file1.
8252         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8253
8254         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8255                 namelist+=" lfsck_namespace"
8256         for name in $namelist; do
8257                 # Try to copy xattr from $file0 to $file1.
8258                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8259
8260                 setfattr --name=trusted.$name --value="$value" $file1 ||
8261                         error "setxattr 'trusted.$name' failed"
8262
8263                 # Try to set a garbage xattr.
8264                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8265
8266                 if [[ x$name == "xlov" ]]; then
8267                         setfattr --name=trusted.lov --value="$value" $file1 &&
8268                         error "setxattr invalid 'trusted.lov' success"
8269                 else
8270                         setfattr --name=trusted.$name --value="$value" $file1 ||
8271                                 error "setxattr invalid 'trusted.$name' failed"
8272                 fi
8273
8274                 # Try to remove the xattr from $file1. We don't care if this
8275                 # appears to succeed or fail, we just don't want there to be
8276                 # any changes or crashes.
8277                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8278         done
8279
8280         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8281         then
8282                 name="lfsck_ns"
8283                 # Try to copy xattr from $file0 to $file1.
8284                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8285
8286                 setfattr --name=trusted.$name --value="$value" $file1 ||
8287                         error "setxattr 'trusted.$name' failed"
8288
8289                 # Try to set a garbage xattr.
8290                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8291
8292                 setfattr --name=trusted.$name --value="$value" $file1 ||
8293                         error "setxattr 'trusted.$name' failed"
8294
8295                 # Try to remove the xattr from $file1. We don't care if this
8296                 # appears to succeed or fail, we just don't want there to be
8297                 # any changes or crashes.
8298                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8299         fi
8300
8301         # Get 'after' xattrs of file1.
8302         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8303
8304         if ! diff $xattr0 $xattr1; then
8305                 error "before and after xattrs of '$file1' differ"
8306         fi
8307
8308         rm -rf $file0 $file1 $xattr0 $xattr1
8309
8310         return 0
8311 }
8312 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8313
8314 test_102p() { # LU-4703 setxattr did not check ownership
8315         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8316                 skip "MDS needs to be at least 2.5.56"
8317
8318         local testfile=$DIR/$tfile
8319
8320         touch $testfile
8321
8322         echo "setfacl as user..."
8323         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8324         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8325
8326         echo "setfattr as user..."
8327         setfacl -m "u:$RUNAS_ID:---" $testfile
8328         $RUNAS setfattr -x system.posix_acl_access $testfile
8329         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8330 }
8331 run_test 102p "check setxattr(2) correctly fails without permission"
8332
8333 test_102q() {
8334         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8335                 skip "MDS needs to be at least 2.6.92"
8336
8337         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8338 }
8339 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8340
8341 test_102r() {
8342         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8343                 skip "MDS needs to be at least 2.6.93"
8344
8345         touch $DIR/$tfile || error "touch"
8346         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8347         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8348         rm $DIR/$tfile || error "rm"
8349
8350         #normal directory
8351         mkdir -p $DIR/$tdir || error "mkdir"
8352         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8353         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8354         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8355                 error "$testfile error deleting user.author1"
8356         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8357                 grep "user.$(basename $tdir)" &&
8358                 error "$tdir did not delete user.$(basename $tdir)"
8359         rmdir $DIR/$tdir || error "rmdir"
8360
8361         #striped directory
8362         test_mkdir $DIR/$tdir
8363         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8364         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8365         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8366                 error "$testfile error deleting user.author1"
8367         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8368                 grep "user.$(basename $tdir)" &&
8369                 error "$tdir did not delete user.$(basename $tdir)"
8370         rmdir $DIR/$tdir || error "rm striped dir"
8371 }
8372 run_test 102r "set EAs with empty values"
8373
8374 run_acl_subtest()
8375 {
8376     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8377     return $?
8378 }
8379
8380 test_103a() {
8381         [ "$UID" != 0 ] && skip "must run as root"
8382         $GSS && skip_env "could not run under gss"
8383         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8384                 skip_env "must have acl enabled"
8385         [ -z "$(which setfacl 2>/dev/null)" ] &&
8386                 skip_env "could not find setfacl"
8387         remote_mds_nodsh && skip "remote MDS with nodsh"
8388
8389         gpasswd -a daemon bin                           # LU-5641
8390         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8391
8392         declare -a identity_old
8393
8394         for num in $(seq $MDSCOUNT); do
8395                 switch_identity $num true || identity_old[$num]=$?
8396         done
8397
8398         SAVE_UMASK=$(umask)
8399         umask 0022
8400         mkdir -p $DIR/$tdir
8401         cd $DIR/$tdir
8402
8403         echo "performing cp ..."
8404         run_acl_subtest cp || error "run_acl_subtest cp failed"
8405         echo "performing getfacl-noacl..."
8406         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8407         echo "performing misc..."
8408         run_acl_subtest misc || error  "misc test failed"
8409         echo "performing permissions..."
8410         run_acl_subtest permissions || error "permissions failed"
8411         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8412         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8413              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8414              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8415         then
8416                 echo "performing permissions xattr..."
8417                 run_acl_subtest permissions_xattr ||
8418                         error "permissions_xattr failed"
8419         fi
8420         echo "performing setfacl..."
8421         run_acl_subtest setfacl || error  "setfacl test failed"
8422
8423         # inheritance test got from HP
8424         echo "performing inheritance..."
8425         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8426         chmod +x make-tree || error "chmod +x failed"
8427         run_acl_subtest inheritance || error "inheritance test failed"
8428         rm -f make-tree
8429
8430         echo "LU-974 ignore umask when acl is enabled..."
8431         run_acl_subtest 974 || error "LU-974 umask test failed"
8432         if [ $MDSCOUNT -ge 2 ]; then
8433                 run_acl_subtest 974_remote ||
8434                         error "LU-974 umask test failed under remote dir"
8435         fi
8436
8437         echo "LU-2561 newly created file is same size as directory..."
8438         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8439                 run_acl_subtest 2561 || error "LU-2561 test failed"
8440         else
8441                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8442         fi
8443
8444         run_acl_subtest 4924 || error "LU-4924 test failed"
8445
8446         cd $SAVE_PWD
8447         umask $SAVE_UMASK
8448
8449         for num in $(seq $MDSCOUNT); do
8450                 if [ "${identity_old[$num]}" = 1 ]; then
8451                         switch_identity $num false || identity_old[$num]=$?
8452                 fi
8453         done
8454 }
8455 run_test 103a "acl test"
8456
8457 test_103b() {
8458         local U
8459
8460         for U in {0..511}; do
8461                 {
8462                 local O=$(printf "%04o" $U)
8463
8464                 umask $(printf "%04o" $((511 ^ $O)))
8465                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8466                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8467
8468                 (( $S == ($O & 0666) )) ||
8469                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8470
8471                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8472                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8473                 (( $S == ($O & 0666) )) ||
8474                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8475
8476                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8477                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8478                 (( $S == ($O & 0666) )) ||
8479                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8480                 rm -f $DIR/$tfile.[smp]$0
8481                 } &
8482         done
8483         wait
8484 }
8485 run_test 103b "umask lfs setstripe"
8486
8487 test_103c() {
8488         mkdir -p $DIR/$tdir
8489         cp -rp $DIR/$tdir $DIR/$tdir.bak
8490
8491         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8492                 error "$DIR/$tdir shouldn't contain default ACL"
8493         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8494                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8495         true
8496 }
8497 run_test 103c "'cp -rp' won't set empty acl"
8498
8499 test_104a() {
8500         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8501
8502         touch $DIR/$tfile
8503         lfs df || error "lfs df failed"
8504         lfs df -ih || error "lfs df -ih failed"
8505         lfs df -h $DIR || error "lfs df -h $DIR failed"
8506         lfs df -i $DIR || error "lfs df -i $DIR failed"
8507         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8508         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8509
8510         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8511         lctl --device %$OSC deactivate
8512         lfs df || error "lfs df with deactivated OSC failed"
8513         lctl --device %$OSC activate
8514         # wait the osc back to normal
8515         wait_osc_import_state client ost FULL
8516
8517         lfs df || error "lfs df with reactivated OSC failed"
8518         rm -f $DIR/$tfile
8519 }
8520 run_test 104a "lfs df [-ih] [path] test ========================="
8521
8522 test_104b() {
8523         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8524         [ $RUNAS_ID -eq $UID ] &&
8525                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8526
8527         chmod 666 /dev/obd
8528         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8529                         grep "Permission denied" | wc -l)))
8530         if [ $denied_cnt -ne 0 ]; then
8531                 error "lfs check servers test failed"
8532         fi
8533 }
8534 run_test 104b "$RUNAS lfs check servers test ===================="
8535
8536 test_105a() {
8537         # doesn't work on 2.4 kernels
8538         touch $DIR/$tfile
8539         if $(flock_is_enabled); then
8540                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8541         else
8542                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8543         fi
8544         rm -f $DIR/$tfile
8545 }
8546 run_test 105a "flock when mounted without -o flock test ========"
8547
8548 test_105b() {
8549         touch $DIR/$tfile
8550         if $(flock_is_enabled); then
8551                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8552         else
8553                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8554         fi
8555         rm -f $DIR/$tfile
8556 }
8557 run_test 105b "fcntl when mounted without -o flock test ========"
8558
8559 test_105c() {
8560         touch $DIR/$tfile
8561         if $(flock_is_enabled); then
8562                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8563         else
8564                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8565         fi
8566         rm -f $DIR/$tfile
8567 }
8568 run_test 105c "lockf when mounted without -o flock test"
8569
8570 test_105d() { # bug 15924
8571         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8572
8573         test_mkdir $DIR/$tdir
8574         flock_is_enabled || skip_env "mount w/o flock enabled"
8575         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8576         $LCTL set_param fail_loc=0x80000315
8577         flocks_test 2 $DIR/$tdir
8578 }
8579 run_test 105d "flock race (should not freeze) ========"
8580
8581 test_105e() { # bug 22660 && 22040
8582         flock_is_enabled || skip_env "mount w/o flock enabled"
8583
8584         touch $DIR/$tfile
8585         flocks_test 3 $DIR/$tfile
8586 }
8587 run_test 105e "Two conflicting flocks from same process"
8588
8589 test_106() { #bug 10921
8590         test_mkdir $DIR/$tdir
8591         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8592         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8593 }
8594 run_test 106 "attempt exec of dir followed by chown of that dir"
8595
8596 test_107() {
8597         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8598
8599         CDIR=`pwd`
8600         local file=core
8601
8602         cd $DIR
8603         rm -f $file
8604
8605         local save_pattern=$(sysctl -n kernel.core_pattern)
8606         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8607         sysctl -w kernel.core_pattern=$file
8608         sysctl -w kernel.core_uses_pid=0
8609
8610         ulimit -c unlimited
8611         sleep 60 &
8612         SLEEPPID=$!
8613
8614         sleep 1
8615
8616         kill -s 11 $SLEEPPID
8617         wait $SLEEPPID
8618         if [ -e $file ]; then
8619                 size=`stat -c%s $file`
8620                 [ $size -eq 0 ] && error "Fail to create core file $file"
8621         else
8622                 error "Fail to create core file $file"
8623         fi
8624         rm -f $file
8625         sysctl -w kernel.core_pattern=$save_pattern
8626         sysctl -w kernel.core_uses_pid=$save_uses_pid
8627         cd $CDIR
8628 }
8629 run_test 107 "Coredump on SIG"
8630
8631 test_110() {
8632         test_mkdir $DIR/$tdir
8633         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8634         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8635                 error "mkdir with 256 char should fail, but did not"
8636         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8637                 error "create with 255 char failed"
8638         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8639                 error "create with 256 char should fail, but did not"
8640
8641         ls -l $DIR/$tdir
8642         rm -rf $DIR/$tdir
8643 }
8644 run_test 110 "filename length checking"
8645
8646 #
8647 # Purpose: To verify dynamic thread (OSS) creation.
8648 #
8649 test_115() {
8650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8651         remote_ost_nodsh && skip "remote OST with nodsh"
8652
8653         # Lustre does not stop service threads once they are started.
8654         # Reset number of running threads to default.
8655         stopall
8656         setupall
8657
8658         local OSTIO_pre
8659         local save_params="$TMP/sanity-$TESTNAME.parameters"
8660
8661         # Get ll_ost_io count before I/O
8662         OSTIO_pre=$(do_facet ost1 \
8663                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8664         # Exit if lustre is not running (ll_ost_io not running).
8665         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8666
8667         echo "Starting with $OSTIO_pre threads"
8668         local thread_max=$((OSTIO_pre * 2))
8669         local rpc_in_flight=$((thread_max * 2))
8670         # Number of I/O Process proposed to be started.
8671         local nfiles
8672         local facets=$(get_facets OST)
8673
8674         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8675         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8676
8677         # Set in_flight to $rpc_in_flight
8678         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8679                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8680         nfiles=${rpc_in_flight}
8681         # Set ost thread_max to $thread_max
8682         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8683
8684         # 5 Minutes should be sufficient for max number of OSS
8685         # threads(thread_max) to be created.
8686         local timeout=300
8687
8688         # Start I/O.
8689         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8690         test_mkdir $DIR/$tdir
8691         for i in $(seq $nfiles); do
8692                 local file=$DIR/$tdir/${tfile}-$i
8693                 $LFS setstripe -c -1 -i 0 $file
8694                 ($WTL $file $timeout)&
8695         done
8696
8697         # I/O Started - Wait for thread_started to reach thread_max or report
8698         # error if thread_started is more than thread_max.
8699         echo "Waiting for thread_started to reach thread_max"
8700         local thread_started=0
8701         local end_time=$((SECONDS + timeout))
8702
8703         while [ $SECONDS -le $end_time ] ; do
8704                 echo -n "."
8705                 # Get ost i/o thread_started count.
8706                 thread_started=$(do_facet ost1 \
8707                         "$LCTL get_param \
8708                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8709                 # Break out if thread_started is equal/greater than thread_max
8710                 if [[ $thread_started -ge $thread_max ]]; then
8711                         echo ll_ost_io thread_started $thread_started, \
8712                                 equal/greater than thread_max $thread_max
8713                         break
8714                 fi
8715                 sleep 1
8716         done
8717
8718         # Cleanup - We have the numbers, Kill i/o jobs if running.
8719         jobcount=($(jobs -p))
8720         for i in $(seq 0 $((${#jobcount[@]}-1)))
8721         do
8722                 kill -9 ${jobcount[$i]}
8723                 if [ $? -ne 0 ] ; then
8724                         echo Warning: \
8725                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8726                 fi
8727         done
8728
8729         # Cleanup files left by WTL binary.
8730         for i in $(seq $nfiles); do
8731                 local file=$DIR/$tdir/${tfile}-$i
8732                 rm -rf $file
8733                 if [ $? -ne 0 ] ; then
8734                         echo "Warning: Failed to delete file $file"
8735                 fi
8736         done
8737
8738         restore_lustre_params <$save_params
8739         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8740
8741         # Error out if no new thread has started or Thread started is greater
8742         # than thread max.
8743         if [[ $thread_started -le $OSTIO_pre ||
8744                         $thread_started -gt $thread_max ]]; then
8745                 error "ll_ost_io: thread_started $thread_started" \
8746                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8747                       "No new thread started or thread started greater " \
8748                       "than thread_max."
8749         fi
8750 }
8751 run_test 115 "verify dynamic thread creation===================="
8752
8753 free_min_max () {
8754         wait_delete_completed
8755         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8756         echo "OST kbytes available: ${AVAIL[@]}"
8757         MAXV=${AVAIL[0]}
8758         MAXI=0
8759         MINV=${AVAIL[0]}
8760         MINI=0
8761         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8762                 #echo OST $i: ${AVAIL[i]}kb
8763                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8764                         MAXV=${AVAIL[i]}
8765                         MAXI=$i
8766                 fi
8767                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8768                         MINV=${AVAIL[i]}
8769                         MINI=$i
8770                 fi
8771         done
8772         echo "Min free space: OST $MINI: $MINV"
8773         echo "Max free space: OST $MAXI: $MAXV"
8774 }
8775
8776 test_116a() { # was previously test_116()
8777         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8778         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8779         remote_mds_nodsh && skip "remote MDS with nodsh"
8780
8781         echo -n "Free space priority "
8782         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8783                 head -n1
8784         declare -a AVAIL
8785         free_min_max
8786
8787         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8788         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8789         trap simple_cleanup_common EXIT
8790
8791         # Check if we need to generate uneven OSTs
8792         test_mkdir -p $DIR/$tdir/OST${MINI}
8793         local FILL=$((MINV / 4))
8794         local DIFF=$((MAXV - MINV))
8795         local DIFF2=$((DIFF * 100 / MINV))
8796
8797         local threshold=$(do_facet $SINGLEMDS \
8798                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8799         threshold=${threshold%%%}
8800         echo -n "Check for uneven OSTs: "
8801         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8802
8803         if [[ $DIFF2 -gt $threshold ]]; then
8804                 echo "ok"
8805                 echo "Don't need to fill OST$MINI"
8806         else
8807                 # generate uneven OSTs. Write 2% over the QOS threshold value
8808                 echo "no"
8809                 DIFF=$((threshold - DIFF2 + 2))
8810                 DIFF2=$((MINV * DIFF / 100))
8811                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8812                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8813                         error "setstripe failed"
8814                 DIFF=$((DIFF2 / 2048))
8815                 i=0
8816                 while [ $i -lt $DIFF ]; do
8817                         i=$((i + 1))
8818                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8819                                 bs=2M count=1 2>/dev/null
8820                         echo -n .
8821                 done
8822                 echo .
8823                 sync
8824                 sleep_maxage
8825                 free_min_max
8826         fi
8827
8828         DIFF=$((MAXV - MINV))
8829         DIFF2=$((DIFF * 100 / MINV))
8830         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8831         if [ $DIFF2 -gt $threshold ]; then
8832                 echo "ok"
8833         else
8834                 echo "failed - QOS mode won't be used"
8835                 simple_cleanup_common
8836                 skip "QOS imbalance criteria not met"
8837         fi
8838
8839         MINI1=$MINI
8840         MINV1=$MINV
8841         MAXI1=$MAXI
8842         MAXV1=$MAXV
8843
8844         # now fill using QOS
8845         $SETSTRIPE -c 1 $DIR/$tdir
8846         FILL=$((FILL / 200))
8847         if [ $FILL -gt 600 ]; then
8848                 FILL=600
8849         fi
8850         echo "writing $FILL files to QOS-assigned OSTs"
8851         i=0
8852         while [ $i -lt $FILL ]; do
8853                 i=$((i + 1))
8854                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8855                         count=1 2>/dev/null
8856                 echo -n .
8857         done
8858         echo "wrote $i 200k files"
8859         sync
8860         sleep_maxage
8861
8862         echo "Note: free space may not be updated, so measurements might be off"
8863         free_min_max
8864         DIFF2=$((MAXV - MINV))
8865         echo "free space delta: orig $DIFF final $DIFF2"
8866         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8867         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8868         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8869         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8870         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8871         if [[ $DIFF -gt 0 ]]; then
8872                 FILL=$((DIFF2 * 100 / DIFF - 100))
8873                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8874         fi
8875
8876         # Figure out which files were written where
8877         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8878                awk '/'$MINI1': / {print $2; exit}')
8879         echo $UUID
8880         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8881         echo "$MINC files created on smaller OST $MINI1"
8882         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8883                awk '/'$MAXI1': / {print $2; exit}')
8884         echo $UUID
8885         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8886         echo "$MAXC files created on larger OST $MAXI1"
8887         if [[ $MINC -gt 0 ]]; then
8888                 FILL=$((MAXC * 100 / MINC - 100))
8889                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8890         fi
8891         [[ $MAXC -gt $MINC ]] ||
8892                 error_ignore LU-9 "stripe QOS didn't balance free space"
8893         simple_cleanup_common
8894 }
8895 run_test 116a "stripe QOS: free space balance ==================="
8896
8897 test_116b() { # LU-2093
8898         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8899         remote_mds_nodsh && skip "remote MDS with nodsh"
8900
8901 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8902         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8903                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8904         [ -z "$old_rr" ] && skip "no QOS"
8905         do_facet $SINGLEMDS lctl set_param \
8906                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8907         mkdir -p $DIR/$tdir
8908         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8909         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8910         do_facet $SINGLEMDS lctl set_param fail_loc=0
8911         rm -rf $DIR/$tdir
8912         do_facet $SINGLEMDS lctl set_param \
8913                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8914 }
8915 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8916
8917 test_117() # bug 10891
8918 {
8919         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8920
8921         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8922         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8923         lctl set_param fail_loc=0x21e
8924         > $DIR/$tfile || error "truncate failed"
8925         lctl set_param fail_loc=0
8926         echo "Truncate succeeded."
8927         rm -f $DIR/$tfile
8928 }
8929 run_test 117 "verify osd extend =========="
8930
8931 NO_SLOW_RESENDCOUNT=4
8932 export OLD_RESENDCOUNT=""
8933 set_resend_count () {
8934         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8935         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8936         lctl set_param -n $PROC_RESENDCOUNT $1
8937         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8938 }
8939
8940 # for reduce test_118* time (b=14842)
8941 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8942
8943 # Reset async IO behavior after error case
8944 reset_async() {
8945         FILE=$DIR/reset_async
8946
8947         # Ensure all OSCs are cleared
8948         $SETSTRIPE -c -1 $FILE
8949         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8950         sync
8951         rm $FILE
8952 }
8953
8954 test_118a() #bug 11710
8955 {
8956         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8957
8958         reset_async
8959
8960         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8961         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8962         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8963
8964         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8965                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8966                 return 1;
8967         fi
8968         rm -f $DIR/$tfile
8969 }
8970 run_test 118a "verify O_SYNC works =========="
8971
8972 test_118b()
8973 {
8974         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8975         remote_ost_nodsh && skip "remote OST with nodsh"
8976
8977         reset_async
8978
8979         #define OBD_FAIL_SRV_ENOENT 0x217
8980         set_nodes_failloc "$(osts_nodes)" 0x217
8981         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8982         RC=$?
8983         set_nodes_failloc "$(osts_nodes)" 0
8984         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8985         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8986                     grep -c writeback)
8987
8988         if [[ $RC -eq 0 ]]; then
8989                 error "Must return error due to dropped pages, rc=$RC"
8990                 return 1;
8991         fi
8992
8993         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8994                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8995                 return 1;
8996         fi
8997
8998         echo "Dirty pages not leaked on ENOENT"
8999
9000         # Due to the above error the OSC will issue all RPCs syncronously
9001         # until a subsequent RPC completes successfully without error.
9002         $MULTIOP $DIR/$tfile Ow4096yc
9003         rm -f $DIR/$tfile
9004
9005         return 0
9006 }
9007 run_test 118b "Reclaim dirty pages on fatal error =========="
9008
9009 test_118c()
9010 {
9011         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9012
9013         # for 118c, restore the original resend count, LU-1940
9014         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9015                                 set_resend_count $OLD_RESENDCOUNT
9016         remote_ost_nodsh && skip "remote OST with nodsh"
9017
9018         reset_async
9019
9020         #define OBD_FAIL_OST_EROFS               0x216
9021         set_nodes_failloc "$(osts_nodes)" 0x216
9022
9023         # multiop should block due to fsync until pages are written
9024         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9025         MULTIPID=$!
9026         sleep 1
9027
9028         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9029                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9030         fi
9031
9032         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9033                     grep -c writeback)
9034         if [[ $WRITEBACK -eq 0 ]]; then
9035                 error "No page in writeback, writeback=$WRITEBACK"
9036         fi
9037
9038         set_nodes_failloc "$(osts_nodes)" 0
9039         wait $MULTIPID
9040         RC=$?
9041         if [[ $RC -ne 0 ]]; then
9042                 error "Multiop fsync failed, rc=$RC"
9043         fi
9044
9045         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9046         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9047                     grep -c writeback)
9048         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9049                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9050         fi
9051
9052         rm -f $DIR/$tfile
9053         echo "Dirty pages flushed via fsync on EROFS"
9054         return 0
9055 }
9056 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9057
9058 # continue to use small resend count to reduce test_118* time (b=14842)
9059 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9060
9061 test_118d()
9062 {
9063         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9064         remote_ost_nodsh && skip "remote OST with nodsh"
9065
9066         reset_async
9067
9068         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9069         set_nodes_failloc "$(osts_nodes)" 0x214
9070         # multiop should block due to fsync until pages are written
9071         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9072         MULTIPID=$!
9073         sleep 1
9074
9075         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9076                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9077         fi
9078
9079         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9080                     grep -c writeback)
9081         if [[ $WRITEBACK -eq 0 ]]; then
9082                 error "No page in writeback, writeback=$WRITEBACK"
9083         fi
9084
9085         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9086         set_nodes_failloc "$(osts_nodes)" 0
9087
9088         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9089         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9090                     grep -c writeback)
9091         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9092                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9093         fi
9094
9095         rm -f $DIR/$tfile
9096         echo "Dirty pages gaurenteed flushed via fsync"
9097         return 0
9098 }
9099 run_test 118d "Fsync validation inject a delay of the bulk =========="
9100
9101 test_118f() {
9102         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9103
9104         reset_async
9105
9106         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9107         lctl set_param fail_loc=0x8000040a
9108
9109         # Should simulate EINVAL error which is fatal
9110         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9111         RC=$?
9112         if [[ $RC -eq 0 ]]; then
9113                 error "Must return error due to dropped pages, rc=$RC"
9114         fi
9115
9116         lctl set_param fail_loc=0x0
9117
9118         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9119         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9120         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9121                     grep -c writeback)
9122         if [[ $LOCKED -ne 0 ]]; then
9123                 error "Locked pages remain in cache, locked=$LOCKED"
9124         fi
9125
9126         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9127                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9128         fi
9129
9130         rm -f $DIR/$tfile
9131         echo "No pages locked after fsync"
9132
9133         reset_async
9134         return 0
9135 }
9136 run_test 118f "Simulate unrecoverable OSC side error =========="
9137
9138 test_118g() {
9139         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9140
9141         reset_async
9142
9143         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9144         lctl set_param fail_loc=0x406
9145
9146         # simulate local -ENOMEM
9147         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9148         RC=$?
9149
9150         lctl set_param fail_loc=0
9151         if [[ $RC -eq 0 ]]; then
9152                 error "Must return error due to dropped pages, rc=$RC"
9153         fi
9154
9155         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9156         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9157         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9158                         grep -c writeback)
9159         if [[ $LOCKED -ne 0 ]]; then
9160                 error "Locked pages remain in cache, locked=$LOCKED"
9161         fi
9162
9163         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9164                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9165         fi
9166
9167         rm -f $DIR/$tfile
9168         echo "No pages locked after fsync"
9169
9170         reset_async
9171         return 0
9172 }
9173 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9174
9175 test_118h() {
9176         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9177         remote_ost_nodsh && skip "remote OST with nodsh"
9178
9179         reset_async
9180
9181         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9182         set_nodes_failloc "$(osts_nodes)" 0x20e
9183         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9184         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9185         RC=$?
9186
9187         set_nodes_failloc "$(osts_nodes)" 0
9188         if [[ $RC -eq 0 ]]; then
9189                 error "Must return error due to dropped pages, rc=$RC"
9190         fi
9191
9192         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9193         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9194         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9195                     grep -c writeback)
9196         if [[ $LOCKED -ne 0 ]]; then
9197                 error "Locked pages remain in cache, locked=$LOCKED"
9198         fi
9199
9200         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9201                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9202         fi
9203
9204         rm -f $DIR/$tfile
9205         echo "No pages locked after fsync"
9206
9207         return 0
9208 }
9209 run_test 118h "Verify timeout in handling recoverables errors  =========="
9210
9211 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9212
9213 test_118i() {
9214         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9215         remote_ost_nodsh && skip "remote OST with nodsh"
9216
9217         reset_async
9218
9219         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9220         set_nodes_failloc "$(osts_nodes)" 0x20e
9221
9222         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9223         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9224         PID=$!
9225         sleep 5
9226         set_nodes_failloc "$(osts_nodes)" 0
9227
9228         wait $PID
9229         RC=$?
9230         if [[ $RC -ne 0 ]]; then
9231                 error "got error, but should be not, rc=$RC"
9232         fi
9233
9234         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9235         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9236         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9237         if [[ $LOCKED -ne 0 ]]; then
9238                 error "Locked pages remain in cache, locked=$LOCKED"
9239         fi
9240
9241         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9242                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9243         fi
9244
9245         rm -f $DIR/$tfile
9246         echo "No pages locked after fsync"
9247
9248         return 0
9249 }
9250 run_test 118i "Fix error before timeout in recoverable error  =========="
9251
9252 [ "$SLOW" = "no" ] && set_resend_count 4
9253
9254 test_118j() {
9255         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9256         remote_ost_nodsh && skip "remote OST with nodsh"
9257
9258         reset_async
9259
9260         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9261         set_nodes_failloc "$(osts_nodes)" 0x220
9262
9263         # return -EIO from OST
9264         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9265         RC=$?
9266         set_nodes_failloc "$(osts_nodes)" 0x0
9267         if [[ $RC -eq 0 ]]; then
9268                 error "Must return error due to dropped pages, rc=$RC"
9269         fi
9270
9271         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9272         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9273         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9274         if [[ $LOCKED -ne 0 ]]; then
9275                 error "Locked pages remain in cache, locked=$LOCKED"
9276         fi
9277
9278         # in recoverable error on OST we want resend and stay until it finished
9279         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9280                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9281         fi
9282
9283         rm -f $DIR/$tfile
9284         echo "No pages locked after fsync"
9285
9286         return 0
9287 }
9288 run_test 118j "Simulate unrecoverable OST side error =========="
9289
9290 test_118k()
9291 {
9292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9293         remote_ost_nodsh && skip "remote OSTs with nodsh"
9294
9295         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9296         set_nodes_failloc "$(osts_nodes)" 0x20e
9297         test_mkdir $DIR/$tdir
9298
9299         for ((i=0;i<10;i++)); do
9300                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9301                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9302                 SLEEPPID=$!
9303                 sleep 0.500s
9304                 kill $SLEEPPID
9305                 wait $SLEEPPID
9306         done
9307
9308         set_nodes_failloc "$(osts_nodes)" 0
9309         rm -rf $DIR/$tdir
9310 }
9311 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9312
9313 test_118l() # LU-646
9314 {
9315         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9316
9317         test_mkdir $DIR/$tdir
9318         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9319         rm -rf $DIR/$tdir
9320 }
9321 run_test 118l "fsync dir"
9322
9323 test_118m() # LU-3066
9324 {
9325         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9326
9327         test_mkdir $DIR/$tdir
9328         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9329         rm -rf $DIR/$tdir
9330 }
9331 run_test 118m "fdatasync dir ========="
9332
9333 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9334
9335 test_118n()
9336 {
9337         local begin
9338         local end
9339
9340         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9341         remote_ost_nodsh && skip "remote OSTs with nodsh"
9342
9343         # Sleep to avoid a cached response.
9344         #define OBD_STATFS_CACHE_SECONDS 1
9345         sleep 2
9346
9347         # Inject a 10 second delay in the OST_STATFS handler.
9348         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9349         set_nodes_failloc "$(osts_nodes)" 0x242
9350
9351         begin=$SECONDS
9352         stat --file-system $MOUNT > /dev/null
9353         end=$SECONDS
9354
9355         set_nodes_failloc "$(osts_nodes)" 0
9356
9357         if ((end - begin > 20)); then
9358             error "statfs took $((end - begin)) seconds, expected 10"
9359         fi
9360 }
9361 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9362
9363 test_119a() # bug 11737
9364 {
9365         BSIZE=$((512 * 1024))
9366         directio write $DIR/$tfile 0 1 $BSIZE
9367         # We ask to read two blocks, which is more than a file size.
9368         # directio will indicate an error when requested and actual
9369         # sizes aren't equeal (a normal situation in this case) and
9370         # print actual read amount.
9371         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9372         if [ "$NOB" != "$BSIZE" ]; then
9373                 error "read $NOB bytes instead of $BSIZE"
9374         fi
9375         rm -f $DIR/$tfile
9376 }
9377 run_test 119a "Short directIO read must return actual read amount"
9378
9379 test_119b() # bug 11737
9380 {
9381         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9382
9383         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9384         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9385         sync
9386         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9387                 error "direct read failed"
9388         rm -f $DIR/$tfile
9389 }
9390 run_test 119b "Sparse directIO read must return actual read amount"
9391
9392 test_119c() # bug 13099
9393 {
9394         BSIZE=1048576
9395         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9396         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9397         rm -f $DIR/$tfile
9398 }
9399 run_test 119c "Testing for direct read hitting hole"
9400
9401 test_119d() # bug 15950
9402 {
9403         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9404
9405         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9406         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9407         BSIZE=1048576
9408         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9409         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9410         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9411         lctl set_param fail_loc=0x40d
9412         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9413         pid_dio=$!
9414         sleep 1
9415         cat $DIR/$tfile > /dev/null &
9416         lctl set_param fail_loc=0
9417         pid_reads=$!
9418         wait $pid_dio
9419         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9420         sleep 2
9421         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9422         error "the read rpcs have not completed in 2s"
9423         rm -f $DIR/$tfile
9424         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9425 }
9426 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9427
9428 test_120a() {
9429         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9430         remote_mds_nodsh && skip "remote MDS with nodsh"
9431         test_mkdir $DIR/$tdir
9432         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9433                 skip_env "no early lock cancel on server"
9434
9435         lru_resize_disable mdc
9436         lru_resize_disable osc
9437         cancel_lru_locks mdc
9438         # asynchronous object destroy at MDT could cause bl ast to client
9439         cancel_lru_locks osc
9440
9441         stat $DIR/$tdir > /dev/null
9442         can1=$(do_facet $SINGLEMDS \
9443                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9444                awk '/ldlm_cancel/ {print $2}')
9445         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9446                awk '/ldlm_bl_callback/ {print $2}')
9447         test_mkdir -c1 $DIR/$tdir/d1
9448         can2=$(do_facet $SINGLEMDS \
9449                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9450                awk '/ldlm_cancel/ {print $2}')
9451         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9452                awk '/ldlm_bl_callback/ {print $2}')
9453         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9454         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9455         lru_resize_enable mdc
9456         lru_resize_enable osc
9457 }
9458 run_test 120a "Early Lock Cancel: mkdir test"
9459
9460 test_120b() {
9461         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9462         remote_mds_nodsh && skip "remote MDS with nodsh"
9463         test_mkdir $DIR/$tdir
9464         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9465                 skip_env "no early lock cancel on server"
9466
9467         lru_resize_disable mdc
9468         lru_resize_disable osc
9469         cancel_lru_locks mdc
9470         stat $DIR/$tdir > /dev/null
9471         can1=$(do_facet $SINGLEMDS \
9472                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9473                awk '/ldlm_cancel/ {print $2}')
9474         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9475                awk '/ldlm_bl_callback/ {print $2}')
9476         touch $DIR/$tdir/f1
9477         can2=$(do_facet $SINGLEMDS \
9478                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9479                awk '/ldlm_cancel/ {print $2}')
9480         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9481                awk '/ldlm_bl_callback/ {print $2}')
9482         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9483         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9484         lru_resize_enable mdc
9485         lru_resize_enable osc
9486 }
9487 run_test 120b "Early Lock Cancel: create test"
9488
9489 test_120c() {
9490         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9491         remote_mds_nodsh && skip "remote MDS with nodsh"
9492         test_mkdir -c1 $DIR/$tdir
9493         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9494                 skip "no early lock cancel on server"
9495
9496         lru_resize_disable mdc
9497         lru_resize_disable osc
9498         test_mkdir -c1 $DIR/$tdir/d1
9499         test_mkdir -c1 $DIR/$tdir/d2
9500         touch $DIR/$tdir/d1/f1
9501         cancel_lru_locks mdc
9502         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9503         can1=$(do_facet $SINGLEMDS \
9504                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9505                awk '/ldlm_cancel/ {print $2}')
9506         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9507                awk '/ldlm_bl_callback/ {print $2}')
9508         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9509         can2=$(do_facet $SINGLEMDS \
9510                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9511                awk '/ldlm_cancel/ {print $2}')
9512         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9513                awk '/ldlm_bl_callback/ {print $2}')
9514         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9515         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9516         lru_resize_enable mdc
9517         lru_resize_enable osc
9518 }
9519 run_test 120c "Early Lock Cancel: link test"
9520
9521 test_120d() {
9522         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9523         remote_mds_nodsh && skip "remote MDS with nodsh"
9524         test_mkdir -c1 $DIR/$tdir
9525         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9526                 skip_env "no early lock cancel on server"
9527
9528         lru_resize_disable mdc
9529         lru_resize_disable osc
9530         touch $DIR/$tdir
9531         cancel_lru_locks mdc
9532         stat $DIR/$tdir > /dev/null
9533         can1=$(do_facet $SINGLEMDS \
9534                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9535                awk '/ldlm_cancel/ {print $2}')
9536         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9537                awk '/ldlm_bl_callback/ {print $2}')
9538         chmod a+x $DIR/$tdir
9539         can2=$(do_facet $SINGLEMDS \
9540                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9541                awk '/ldlm_cancel/ {print $2}')
9542         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9543                awk '/ldlm_bl_callback/ {print $2}')
9544         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9545         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9546         lru_resize_enable mdc
9547         lru_resize_enable osc
9548 }
9549 run_test 120d "Early Lock Cancel: setattr test"
9550
9551 test_120e() {
9552         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9553         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9554                 skip_env "no early lock cancel on server"
9555         remote_mds_nodsh && skip "remote MDS with nodsh"
9556
9557         local dlmtrace_set=false
9558
9559         test_mkdir -c1 $DIR/$tdir
9560         lru_resize_disable mdc
9561         lru_resize_disable osc
9562         ! $LCTL get_param debug | grep -q dlmtrace &&
9563                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9564         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9565         cancel_lru_locks mdc
9566         cancel_lru_locks osc
9567         dd if=$DIR/$tdir/f1 of=/dev/null
9568         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9569         # XXX client can not do early lock cancel of OST lock
9570         # during unlink (LU-4206), so cancel osc lock now.
9571         sleep 2
9572         cancel_lru_locks osc
9573         can1=$(do_facet $SINGLEMDS \
9574                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9575                awk '/ldlm_cancel/ {print $2}')
9576         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9577                awk '/ldlm_bl_callback/ {print $2}')
9578         unlink $DIR/$tdir/f1
9579         sleep 5
9580         can2=$(do_facet $SINGLEMDS \
9581                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9582                awk '/ldlm_cancel/ {print $2}')
9583         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9584                awk '/ldlm_bl_callback/ {print $2}')
9585         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9586                 $LCTL dk $TMP/cancel.debug.txt
9587         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9588                 $LCTL dk $TMP/blocking.debug.txt
9589         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9590         lru_resize_enable mdc
9591         lru_resize_enable osc
9592 }
9593 run_test 120e "Early Lock Cancel: unlink test"
9594
9595 test_120f() {
9596         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9597         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9598                 skip_env "no early lock cancel on server"
9599         remote_mds_nodsh && skip "remote MDS with nodsh"
9600
9601         test_mkdir -c1 $DIR/$tdir
9602         lru_resize_disable mdc
9603         lru_resize_disable osc
9604         test_mkdir -c1 $DIR/$tdir/d1
9605         test_mkdir -c1 $DIR/$tdir/d2
9606         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9607         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9608         cancel_lru_locks mdc
9609         cancel_lru_locks osc
9610         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9611         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9612         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9613         # XXX client can not do early lock cancel of OST lock
9614         # during rename (LU-4206), so cancel osc lock now.
9615         sleep 2
9616         cancel_lru_locks osc
9617         can1=$(do_facet $SINGLEMDS \
9618                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9619                awk '/ldlm_cancel/ {print $2}')
9620         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9621                awk '/ldlm_bl_callback/ {print $2}')
9622         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9623         sleep 5
9624         can2=$(do_facet $SINGLEMDS \
9625                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9626                awk '/ldlm_cancel/ {print $2}')
9627         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9628                awk '/ldlm_bl_callback/ {print $2}')
9629         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9630         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9631         lru_resize_enable mdc
9632         lru_resize_enable osc
9633 }
9634 run_test 120f "Early Lock Cancel: rename test"
9635
9636 test_120g() {
9637         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9638         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9639                 skip_env "no early lock cancel on server"
9640         remote_mds_nodsh && skip "remote MDS with nodsh"
9641
9642         lru_resize_disable mdc
9643         lru_resize_disable osc
9644         count=10000
9645         echo create $count files
9646         test_mkdir $DIR/$tdir
9647         cancel_lru_locks mdc
9648         cancel_lru_locks osc
9649         t0=$(date +%s)
9650
9651         can0=$(do_facet $SINGLEMDS \
9652                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9653                awk '/ldlm_cancel/ {print $2}')
9654         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9655                awk '/ldlm_bl_callback/ {print $2}')
9656         createmany -o $DIR/$tdir/f $count
9657         sync
9658         can1=$(do_facet $SINGLEMDS \
9659                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9660                awk '/ldlm_cancel/ {print $2}')
9661         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9662                awk '/ldlm_bl_callback/ {print $2}')
9663         t1=$(date +%s)
9664         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9665         echo rm $count files
9666         rm -r $DIR/$tdir
9667         sync
9668         can2=$(do_facet $SINGLEMDS \
9669                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9670                awk '/ldlm_cancel/ {print $2}')
9671         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9672                awk '/ldlm_bl_callback/ {print $2}')
9673         t2=$(date +%s)
9674         echo total: $count removes in $((t2-t1))
9675         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9676         sleep 2
9677         # wait for commitment of removal
9678         lru_resize_enable mdc
9679         lru_resize_enable osc
9680 }
9681 run_test 120g "Early Lock Cancel: performance test"
9682
9683 test_121() { #bug #10589
9684         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9685
9686         rm -rf $DIR/$tfile
9687         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9688 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9689         lctl set_param fail_loc=0x310
9690         cancel_lru_locks osc > /dev/null
9691         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9692         lctl set_param fail_loc=0
9693         [[ $reads -eq $writes ]] ||
9694                 error "read $reads blocks, must be $writes blocks"
9695 }
9696 run_test 121 "read cancel race ========="
9697
9698 test_123a() { # was test 123, statahead(bug 11401)
9699         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9700
9701         SLOWOK=0
9702         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9703                 log "testing UP system. Performance may be lower than expected."
9704                 SLOWOK=1
9705         fi
9706
9707         rm -rf $DIR/$tdir
9708         test_mkdir $DIR/$tdir
9709         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9710         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9711         MULT=10
9712         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9713                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9714
9715                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9716                 lctl set_param -n llite.*.statahead_max 0
9717                 lctl get_param llite.*.statahead_max
9718                 cancel_lru_locks mdc
9719                 cancel_lru_locks osc
9720                 stime=`date +%s`
9721                 time ls -l $DIR/$tdir | wc -l
9722                 etime=`date +%s`
9723                 delta=$((etime - stime))
9724                 log "ls $i files without statahead: $delta sec"
9725                 lctl set_param llite.*.statahead_max=$max
9726
9727                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9728                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9729                 cancel_lru_locks mdc
9730                 cancel_lru_locks osc
9731                 stime=`date +%s`
9732                 time ls -l $DIR/$tdir | wc -l
9733                 etime=`date +%s`
9734                 delta_sa=$((etime - stime))
9735                 log "ls $i files with statahead: $delta_sa sec"
9736                 lctl get_param -n llite.*.statahead_stats
9737                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9738
9739                 [[ $swrong -lt $ewrong ]] &&
9740                         log "statahead was stopped, maybe too many locks held!"
9741                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9742
9743                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9744                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9745                     lctl set_param -n llite.*.statahead_max 0
9746                     lctl get_param llite.*.statahead_max
9747                     cancel_lru_locks mdc
9748                     cancel_lru_locks osc
9749                     stime=`date +%s`
9750                     time ls -l $DIR/$tdir | wc -l
9751                     etime=`date +%s`
9752                     delta=$((etime - stime))
9753                     log "ls $i files again without statahead: $delta sec"
9754                     lctl set_param llite.*.statahead_max=$max
9755                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9756                         if [  $SLOWOK -eq 0 ]; then
9757                                 error "ls $i files is slower with statahead!"
9758                         else
9759                                 log "ls $i files is slower with statahead!"
9760                         fi
9761                         break
9762                     fi
9763                 fi
9764
9765                 [ $delta -gt 20 ] && break
9766                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9767                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9768         done
9769         log "ls done"
9770
9771         stime=`date +%s`
9772         rm -r $DIR/$tdir
9773         sync
9774         etime=`date +%s`
9775         delta=$((etime - stime))
9776         log "rm -r $DIR/$tdir/: $delta seconds"
9777         log "rm done"
9778         lctl get_param -n llite.*.statahead_stats
9779 }
9780 run_test 123a "verify statahead work"
9781
9782 test_123b () { # statahead(bug 15027)
9783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9784
9785         test_mkdir $DIR/$tdir
9786         createmany -o $DIR/$tdir/$tfile-%d 1000
9787
9788         cancel_lru_locks mdc
9789         cancel_lru_locks osc
9790
9791 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9792         lctl set_param fail_loc=0x80000803
9793         ls -lR $DIR/$tdir > /dev/null
9794         log "ls done"
9795         lctl set_param fail_loc=0x0
9796         lctl get_param -n llite.*.statahead_stats
9797         rm -r $DIR/$tdir
9798         sync
9799
9800 }
9801 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9802
9803 test_124a() {
9804         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9805         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9806                 skip_env "no lru resize on server"
9807
9808         local NR=2000
9809
9810         test_mkdir $DIR/$tdir
9811
9812         log "create $NR files at $DIR/$tdir"
9813         createmany -o $DIR/$tdir/f $NR ||
9814                 error "failed to create $NR files in $DIR/$tdir"
9815
9816         cancel_lru_locks mdc
9817         ls -l $DIR/$tdir > /dev/null
9818
9819         local NSDIR=""
9820         local LRU_SIZE=0
9821         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9822                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9823                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9824                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9825                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9826                         log "NSDIR=$NSDIR"
9827                         log "NS=$(basename $NSDIR)"
9828                         break
9829                 fi
9830         done
9831
9832         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9833                 skip "Not enough cached locks created!"
9834         fi
9835         log "LRU=$LRU_SIZE"
9836
9837         local SLEEP=30
9838
9839         # We know that lru resize allows one client to hold $LIMIT locks
9840         # for 10h. After that locks begin to be killed by client.
9841         local MAX_HRS=10
9842         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9843         log "LIMIT=$LIMIT"
9844         if [ $LIMIT -lt $LRU_SIZE ]; then
9845                 skip "Limit is too small $LIMIT"
9846         fi
9847
9848         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9849         # killing locks. Some time was spent for creating locks. This means
9850         # that up to the moment of sleep finish we must have killed some of
9851         # them (10-100 locks). This depends on how fast ther were created.
9852         # Many of them were touched in almost the same moment and thus will
9853         # be killed in groups.
9854         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9855
9856         # Use $LRU_SIZE_B here to take into account real number of locks
9857         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9858         local LRU_SIZE_B=$LRU_SIZE
9859         log "LVF=$LVF"
9860         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9861         log "OLD_LVF=$OLD_LVF"
9862         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9863
9864         # Let's make sure that we really have some margin. Client checks
9865         # cached locks every 10 sec.
9866         SLEEP=$((SLEEP+20))
9867         log "Sleep ${SLEEP} sec"
9868         local SEC=0
9869         while ((SEC<$SLEEP)); do
9870                 echo -n "..."
9871                 sleep 5
9872                 SEC=$((SEC+5))
9873                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9874                 echo -n "$LRU_SIZE"
9875         done
9876         echo ""
9877         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9878         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9879
9880         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9881                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9882                 unlinkmany $DIR/$tdir/f $NR
9883                 return
9884         }
9885
9886         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9887         log "unlink $NR files at $DIR/$tdir"
9888         unlinkmany $DIR/$tdir/f $NR
9889 }
9890 run_test 124a "lru resize ======================================="
9891
9892 get_max_pool_limit()
9893 {
9894         local limit=$($LCTL get_param \
9895                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9896         local max=0
9897         for l in $limit; do
9898                 if [[ $l -gt $max ]]; then
9899                         max=$l
9900                 fi
9901         done
9902         echo $max
9903 }
9904
9905 test_124b() {
9906         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9907         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9908                 skip_env "no lru resize on server"
9909
9910         LIMIT=$(get_max_pool_limit)
9911
9912         NR=$(($(default_lru_size)*20))
9913         if [[ $NR -gt $LIMIT ]]; then
9914                 log "Limit lock number by $LIMIT locks"
9915                 NR=$LIMIT
9916         fi
9917
9918         IFree=$(mdsrate_inodes_available)
9919         if [ $IFree -lt $NR ]; then
9920                 log "Limit lock number by $IFree inodes"
9921                 NR=$IFree
9922         fi
9923
9924         lru_resize_disable mdc
9925         test_mkdir -p $DIR/$tdir/disable_lru_resize
9926
9927         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9928         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9929         cancel_lru_locks mdc
9930         stime=`date +%s`
9931         PID=""
9932         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9933         PID="$PID $!"
9934         sleep 2
9935         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9936         PID="$PID $!"
9937         sleep 2
9938         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9939         PID="$PID $!"
9940         wait $PID
9941         etime=`date +%s`
9942         nolruresize_delta=$((etime-stime))
9943         log "ls -la time: $nolruresize_delta seconds"
9944         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9945         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9946
9947         lru_resize_enable mdc
9948         test_mkdir -p $DIR/$tdir/enable_lru_resize
9949
9950         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9951         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9952         cancel_lru_locks mdc
9953         stime=`date +%s`
9954         PID=""
9955         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9956         PID="$PID $!"
9957         sleep 2
9958         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9959         PID="$PID $!"
9960         sleep 2
9961         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9962         PID="$PID $!"
9963         wait $PID
9964         etime=`date +%s`
9965         lruresize_delta=$((etime-stime))
9966         log "ls -la time: $lruresize_delta seconds"
9967         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9968
9969         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9970                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9971         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9972                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9973         else
9974                 log "lru resize performs the same with no lru resize"
9975         fi
9976         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9977 }
9978 run_test 124b "lru resize (performance test) ======================="
9979
9980 test_124c() {
9981         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9982         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9983                 skip_env "no lru resize on server"
9984
9985         # cache ununsed locks on client
9986         local nr=100
9987         cancel_lru_locks mdc
9988         test_mkdir $DIR/$tdir
9989         createmany -o $DIR/$tdir/f $nr ||
9990                 error "failed to create $nr files in $DIR/$tdir"
9991         ls -l $DIR/$tdir > /dev/null
9992
9993         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9994         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9995         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9996         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9997         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9998
9999         # set lru_max_age to 1 sec
10000         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10001         echo "sleep $((recalc_p * 2)) seconds..."
10002         sleep $((recalc_p * 2))
10003
10004         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10005         # restore lru_max_age
10006         $LCTL set_param -n $nsdir.lru_max_age $max_age
10007         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10008         unlinkmany $DIR/$tdir/f $nr
10009 }
10010 run_test 124c "LRUR cancel very aged locks"
10011
10012 test_125() { # 13358
10013         $LCTL get_param -n llite.*.client_type | grep -q local ||
10014                 skip "must run as local client"
10015         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10016                 skip_env "must have acl enabled"
10017         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10018
10019         test_mkdir $DIR/$tdir
10020         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10021         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10022         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10023 }
10024 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10025
10026 test_126() { # bug 12829/13455
10027         $GSS && skip_env "must run as gss disabled"
10028         $LCTL get_param -n llite.*.client_type | grep -q local ||
10029                 skip "must run as local client"
10030         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10031
10032         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10033         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10034         rm -f $DIR/$tfile
10035         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10036 }
10037 run_test 126 "check that the fsgid provided by the client is taken into account"
10038
10039 test_127a() { # bug 15521
10040         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10041
10042         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10043         $LCTL set_param osc.*.stats=0
10044         FSIZE=$((2048 * 1024))
10045         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10046         cancel_lru_locks osc
10047         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10048
10049         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10050         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10051                 echo "got $COUNT $NAME"
10052                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10053                 eval $NAME=$COUNT || error "Wrong proc format"
10054
10055                 case $NAME in
10056                         read_bytes|write_bytes)
10057                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10058                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10059                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10060                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10061                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10062                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10063                                 error "sumsquare is too small: $SUMSQ"
10064                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10065                                 error "sumsquare is too big: $SUMSQ"
10066                         ;;
10067                         *) ;;
10068                 esac
10069         done < $DIR/${tfile}.tmp
10070
10071         #check that we actually got some stats
10072         [ "$read_bytes" ] || error "Missing read_bytes stats"
10073         [ "$write_bytes" ] || error "Missing write_bytes stats"
10074         [ "$read_bytes" != 0 ] || error "no read done"
10075         [ "$write_bytes" != 0 ] || error "no write done"
10076 }
10077 run_test 127a "verify the client stats are sane"
10078
10079 test_127b() { # bug LU-333
10080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10081
10082         $LCTL set_param llite.*.stats=0
10083         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
10084
10085         # perform 2 reads and writes so MAX is different from SUM.
10086         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10087         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10088         cancel_lru_locks osc
10089         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10090         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10091
10092         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
10093         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10094                 echo "got $COUNT $NAME"
10095                 eval $NAME=$COUNT || error "Wrong proc format"
10096
10097         case $NAME in
10098                 read_bytes)
10099                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10100                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10101                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10102                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10103                         ;;
10104                 write_bytes)
10105                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10106                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10107                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10108                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10109                         ;;
10110                         *) ;;
10111                 esac
10112         done < $TMP/${tfile}.tmp
10113
10114         #check that we actually got some stats
10115         [ "$read_bytes" ] || error "Missing read_bytes stats"
10116         [ "$write_bytes" ] || error "Missing write_bytes stats"
10117         [ "$read_bytes" != 0 ] || error "no read done"
10118         [ "$write_bytes" != 0 ] || error "no write done"
10119
10120         rm -f $TMP/${tfile}.tmp
10121 }
10122 run_test 127b "verify the llite client stats are sane"
10123
10124 test_128() { # bug 15212
10125         touch $DIR/$tfile
10126         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10127                 find $DIR/$tfile
10128                 find $DIR/$tfile
10129         EOF
10130
10131         result=$(grep error $TMP/$tfile.log)
10132         rm -f $DIR/$tfile $TMP/$tfile.log
10133         [ -z "$result" ] ||
10134                 error "consecutive find's under interactive lfs failed"
10135 }
10136 run_test 128 "interactive lfs for 2 consecutive find's"
10137
10138 set_dir_limits () {
10139         local mntdev
10140         local canondev
10141         local node
10142
10143         local ldproc=/proc/fs/ldiskfs
10144         local facets=$(get_facets MDS)
10145
10146         for facet in ${facets//,/ }; do
10147                 canondev=$(ldiskfs_canon \
10148                            *.$(convert_facet2label $facet).mntdev $facet)
10149                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10150                         ldproc=/sys/fs/ldiskfs
10151                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10152                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10153         done
10154 }
10155
10156 check_mds_dmesg() {
10157         local facets=$(get_facets MDS)
10158         for facet in ${facets//,/ }; do
10159                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10160         done
10161         return 1
10162 }
10163
10164 test_129() {
10165         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10166         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
10167                 skip "Need MDS version with at least 2.5.56"
10168         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
10169                 skip_env "ldiskfs only test"
10170         fi
10171         remote_mds_nodsh && skip "remote MDS with nodsh"
10172
10173         local ENOSPC=28
10174         local EFBIG=27
10175         local has_warning=false
10176
10177         rm -rf $DIR/$tdir
10178         mkdir -p $DIR/$tdir
10179
10180         # block size of mds1
10181         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10182         set_dir_limits $maxsize $maxsize
10183         local dirsize=$(stat -c%s "$DIR/$tdir")
10184         local nfiles=0
10185         while [[ $dirsize -le $maxsize ]]; do
10186                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10187                 rc=$?
10188                 if ! $has_warning; then
10189                         check_mds_dmesg '"is approaching"' && has_warning=true
10190                 fi
10191                 # check two errors:
10192                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10193                 # EFBIG for previous versions included in ldiskfs series
10194                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10195                         set_dir_limits 0 0
10196                         echo "return code $rc received as expected"
10197
10198                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10199                                 error_exit "create failed w/o dir size limit"
10200
10201                         check_mds_dmesg '"has reached"' ||
10202                                 error_exit "reached message should be output"
10203
10204                         [ $has_warning = "false" ] &&
10205                                 error_exit "warning message should be output"
10206
10207                         dirsize=$(stat -c%s "$DIR/$tdir")
10208
10209                         [[ $dirsize -ge $maxsize ]] && return 0
10210                         error_exit "current dir size $dirsize, " \
10211                                    "previous limit $maxsize"
10212                 elif [ $rc -ne 0 ]; then
10213                         set_dir_limits 0 0
10214                         error_exit "return $rc received instead of expected " \
10215                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10216                 fi
10217                 nfiles=$((nfiles + 1))
10218                 dirsize=$(stat -c%s "$DIR/$tdir")
10219         done
10220
10221         set_dir_limits 0 0
10222         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10223 }
10224 run_test 129 "test directory size limit ========================"
10225
10226 OLDIFS="$IFS"
10227 cleanup_130() {
10228         trap 0
10229         IFS="$OLDIFS"
10230 }
10231
10232 test_130a() {
10233         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10234         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10235
10236         trap cleanup_130 EXIT RETURN
10237
10238         local fm_file=$DIR/$tfile
10239         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10240         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10241                 error "dd failed for $fm_file"
10242
10243         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10244         filefrag -ves $fm_file
10245         RC=$?
10246         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10247                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10248         [ $RC != 0 ] && error "filefrag $fm_file failed"
10249
10250         filefrag_op=$(filefrag -ve -k $fm_file |
10251                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10252         lun=$($GETSTRIPE -i $fm_file)
10253
10254         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10255         IFS=$'\n'
10256         tot_len=0
10257         for line in $filefrag_op
10258         do
10259                 frag_lun=`echo $line | cut -d: -f5`
10260                 ext_len=`echo $line | cut -d: -f4`
10261                 if (( $frag_lun != $lun )); then
10262                         cleanup_130
10263                         error "FIEMAP on 1-stripe file($fm_file) failed"
10264                         return
10265                 fi
10266                 (( tot_len += ext_len ))
10267         done
10268
10269         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10270                 cleanup_130
10271                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10272                 return
10273         fi
10274
10275         cleanup_130
10276
10277         echo "FIEMAP on single striped file succeeded"
10278 }
10279 run_test 130a "FIEMAP (1-stripe file)"
10280
10281 test_130b() {
10282         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10283
10284         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10285         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10286
10287         trap cleanup_130 EXIT RETURN
10288
10289         local fm_file=$DIR/$tfile
10290         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10291                         error "setstripe on $fm_file"
10292         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10293                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10294
10295         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10296                 error "dd failed on $fm_file"
10297
10298         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10299         filefrag_op=$(filefrag -ve -k $fm_file |
10300                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10301
10302         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10303                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10304
10305         IFS=$'\n'
10306         tot_len=0
10307         num_luns=1
10308         for line in $filefrag_op
10309         do
10310                 frag_lun=$(echo $line | cut -d: -f5 |
10311                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10312                 ext_len=$(echo $line | cut -d: -f4)
10313                 if (( $frag_lun != $last_lun )); then
10314                         if (( tot_len != 1024 )); then
10315                                 cleanup_130
10316                                 error "FIEMAP on $fm_file failed; returned " \
10317                                 "len $tot_len for OST $last_lun instead of 1024"
10318                                 return
10319                         else
10320                                 (( num_luns += 1 ))
10321                                 tot_len=0
10322                         fi
10323                 fi
10324                 (( tot_len += ext_len ))
10325                 last_lun=$frag_lun
10326         done
10327         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10328                 cleanup_130
10329                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10330                         "luns or wrong len for OST $last_lun"
10331                 return
10332         fi
10333
10334         cleanup_130
10335
10336         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10337 }
10338 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10339
10340 test_130c() {
10341         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10342
10343         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10344         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10345
10346         trap cleanup_130 EXIT RETURN
10347
10348         local fm_file=$DIR/$tfile
10349         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10350         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10351                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10352
10353         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10354                         error "dd failed on $fm_file"
10355
10356         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10357         filefrag_op=$(filefrag -ve -k $fm_file |
10358                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10359
10360         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10361                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10362
10363         IFS=$'\n'
10364         tot_len=0
10365         num_luns=1
10366         for line in $filefrag_op
10367         do
10368                 frag_lun=$(echo $line | cut -d: -f5 |
10369                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10370                 ext_len=$(echo $line | cut -d: -f4)
10371                 if (( $frag_lun != $last_lun )); then
10372                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10373                         if (( logical != 512 )); then
10374                                 cleanup_130
10375                                 error "FIEMAP on $fm_file failed; returned " \
10376                                 "logical start for lun $logical instead of 512"
10377                                 return
10378                         fi
10379                         if (( tot_len != 512 )); then
10380                                 cleanup_130
10381                                 error "FIEMAP on $fm_file failed; returned " \
10382                                 "len $tot_len for OST $last_lun instead of 1024"
10383                                 return
10384                         else
10385                                 (( num_luns += 1 ))
10386                                 tot_len=0
10387                         fi
10388                 fi
10389                 (( tot_len += ext_len ))
10390                 last_lun=$frag_lun
10391         done
10392         if (( num_luns != 2 || tot_len != 512 )); then
10393                 cleanup_130
10394                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10395                         "luns or wrong len for OST $last_lun"
10396                 return
10397         fi
10398
10399         cleanup_130
10400
10401         echo "FIEMAP on 2-stripe file with hole succeeded"
10402 }
10403 run_test 130c "FIEMAP (2-stripe file with hole)"
10404
10405 test_130d() {
10406         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10407
10408         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10409         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10410
10411         trap cleanup_130 EXIT RETURN
10412
10413         local fm_file=$DIR/$tfile
10414         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10415                         error "setstripe on $fm_file"
10416         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10417                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10418
10419         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10420         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10421                 error "dd failed on $fm_file"
10422
10423         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10424         filefrag_op=$(filefrag -ve -k $fm_file |
10425                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10426
10427         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10428                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10429
10430         IFS=$'\n'
10431         tot_len=0
10432         num_luns=1
10433         for line in $filefrag_op
10434         do
10435                 frag_lun=$(echo $line | cut -d: -f5 |
10436                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10437                 ext_len=$(echo $line | cut -d: -f4)
10438                 if (( $frag_lun != $last_lun )); then
10439                         if (( tot_len != 1024 )); then
10440                                 cleanup_130
10441                                 error "FIEMAP on $fm_file failed; returned " \
10442                                 "len $tot_len for OST $last_lun instead of 1024"
10443                                 return
10444                         else
10445                                 (( num_luns += 1 ))
10446                                 tot_len=0
10447                         fi
10448                 fi
10449                 (( tot_len += ext_len ))
10450                 last_lun=$frag_lun
10451         done
10452         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10453                 cleanup_130
10454                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10455                         "luns or wrong len for OST $last_lun"
10456                 return
10457         fi
10458
10459         cleanup_130
10460
10461         echo "FIEMAP on N-stripe file succeeded"
10462 }
10463 run_test 130d "FIEMAP (N-stripe file)"
10464
10465 test_130e() {
10466         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10467
10468         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10469         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10470
10471         trap cleanup_130 EXIT RETURN
10472
10473         local fm_file=$DIR/$tfile
10474         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10475         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10476                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10477
10478         NUM_BLKS=512
10479         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10480         for ((i = 0; i < $NUM_BLKS; i++))
10481         do
10482                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10483         done
10484
10485         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10486         filefrag_op=$(filefrag -ve -k $fm_file |
10487                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10488
10489         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10490                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10491
10492         IFS=$'\n'
10493         tot_len=0
10494         num_luns=1
10495         for line in $filefrag_op
10496         do
10497                 frag_lun=$(echo $line | cut -d: -f5 |
10498                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10499                 ext_len=$(echo $line | cut -d: -f4)
10500                 if (( $frag_lun != $last_lun )); then
10501                         if (( tot_len != $EXPECTED_LEN )); then
10502                                 cleanup_130
10503                                 error "FIEMAP on $fm_file failed; returned " \
10504                                 "len $tot_len for OST $last_lun instead " \
10505                                 "of $EXPECTED_LEN"
10506                                 return
10507                         else
10508                                 (( num_luns += 1 ))
10509                                 tot_len=0
10510                         fi
10511                 fi
10512                 (( tot_len += ext_len ))
10513                 last_lun=$frag_lun
10514         done
10515         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10516                 cleanup_130
10517                 error "FIEMAP on $fm_file failed; returned wrong number " \
10518                         "of luns or wrong len for OST $last_lun"
10519                 return
10520         fi
10521
10522         cleanup_130
10523
10524         echo "FIEMAP with continuation calls succeeded"
10525 }
10526 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10527
10528 test_130f() {
10529         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10530         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10531
10532         local fm_file=$DIR/$tfile
10533         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10534                 error "multiop create with lov_delay_create on $fm_file"
10535
10536         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10537         filefrag_extents=$(filefrag -vek $fm_file |
10538                            awk '/extents? found/ { print $2 }')
10539         if [[ "$filefrag_extents" != "0" ]]; then
10540                 error "FIEMAP on $fm_file failed; " \
10541                       "returned $filefrag_extents expected 0"
10542         fi
10543
10544         rm -f $fm_file
10545 }
10546 run_test 130f "FIEMAP (unstriped file)"
10547
10548 # Test for writev/readv
10549 test_131a() {
10550         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10551                 error "writev test failed"
10552         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10553                 error "readv failed"
10554         rm -f $DIR/$tfile
10555 }
10556 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10557
10558 test_131b() {
10559         local fsize=$((524288 + 1048576 + 1572864))
10560         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10561                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10562                         error "append writev test failed"
10563
10564         ((fsize += 1572864 + 1048576))
10565         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10566                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10567                         error "append writev test failed"
10568         rm -f $DIR/$tfile
10569 }
10570 run_test 131b "test append writev"
10571
10572 test_131c() {
10573         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10574         error "NOT PASS"
10575 }
10576 run_test 131c "test read/write on file w/o objects"
10577
10578 test_131d() {
10579         rwv -f $DIR/$tfile -w -n 1 1572864
10580         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10581         if [ "$NOB" != 1572864 ]; then
10582                 error "Short read filed: read $NOB bytes instead of 1572864"
10583         fi
10584         rm -f $DIR/$tfile
10585 }
10586 run_test 131d "test short read"
10587
10588 test_131e() {
10589         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10590         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10591         error "read hitting hole failed"
10592         rm -f $DIR/$tfile
10593 }
10594 run_test 131e "test read hitting hole"
10595
10596 check_stats() {
10597         local facet=$1
10598         local op=$2
10599         local want=${3:-0}
10600         local res
10601
10602         case $facet in
10603         mds*) res=$(do_facet $facet \
10604                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10605                  ;;
10606         ost*) res=$(do_facet $facet \
10607                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10608                  ;;
10609         *) error "Wrong facet '$facet'" ;;
10610         esac
10611         echo $res
10612         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10613         # if the argument $3 is zero, it means any stat increment is ok.
10614         if [[ $want -gt 0 ]]; then
10615                 local count=$(echo $res | awk '{ print $2 }')
10616                 [[ $count -ne $want ]] &&
10617                         error "The $op counter on $facet is $count, not $want"
10618         fi
10619 }
10620
10621 test_133a() {
10622         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10623         remote_ost_nodsh && skip "remote OST with nodsh"
10624         remote_mds_nodsh && skip "remote MDS with nodsh"
10625         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10626                 skip_env "MDS doesn't support rename stats"
10627
10628         local testdir=$DIR/${tdir}/stats_testdir
10629
10630         mkdir -p $DIR/${tdir}
10631
10632         # clear stats.
10633         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10634         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10635
10636         # verify mdt stats first.
10637         mkdir ${testdir} || error "mkdir failed"
10638         check_stats $SINGLEMDS "mkdir" 1
10639         touch ${testdir}/${tfile} || error "touch failed"
10640         check_stats $SINGLEMDS "open" 1
10641         check_stats $SINGLEMDS "close" 1
10642         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10643                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10644                 check_stats $SINGLEMDS "mknod" 2
10645         }
10646         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10647         check_stats $SINGLEMDS "unlink" 1
10648         rm -f ${testdir}/${tfile} || error "file remove failed"
10649         check_stats $SINGLEMDS "unlink" 2
10650
10651         # remove working dir and check mdt stats again.
10652         rmdir ${testdir} || error "rmdir failed"
10653         check_stats $SINGLEMDS "rmdir" 1
10654
10655         local testdir1=$DIR/${tdir}/stats_testdir1
10656         mkdir -p ${testdir}
10657         mkdir -p ${testdir1}
10658         touch ${testdir1}/test1
10659         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10660         check_stats $SINGLEMDS "crossdir_rename" 1
10661
10662         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10663         check_stats $SINGLEMDS "samedir_rename" 1
10664
10665         rm -rf $DIR/${tdir}
10666 }
10667 run_test 133a "Verifying MDT stats ========================================"
10668
10669 test_133b() {
10670         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10671         remote_ost_nodsh && skip "remote OST with nodsh"
10672         remote_mds_nodsh && skip "remote MDS with nodsh"
10673
10674         local testdir=$DIR/${tdir}/stats_testdir
10675
10676         mkdir -p ${testdir} || error "mkdir failed"
10677         touch ${testdir}/${tfile} || error "touch failed"
10678         cancel_lru_locks mdc
10679
10680         # clear stats.
10681         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10682         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10683
10684         # extra mdt stats verification.
10685         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10686         check_stats $SINGLEMDS "setattr" 1
10687         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10688         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10689         then            # LU-1740
10690                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10691                 check_stats $SINGLEMDS "getattr" 1
10692         fi
10693         $LFS df || error "lfs failed"
10694         check_stats $SINGLEMDS "statfs" 1
10695
10696         rm -rf $DIR/${tdir}
10697 }
10698 run_test 133b "Verifying extra MDT stats =================================="
10699
10700 test_133c() {
10701         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10702         remote_ost_nodsh && skip "remote OST with nodsh"
10703         remote_mds_nodsh && skip "remote MDS with nodsh"
10704
10705         local testdir=$DIR/$tdir/stats_testdir
10706
10707         test_mkdir -p $testdir
10708
10709         # verify obdfilter stats.
10710         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10711         sync
10712         cancel_lru_locks osc
10713         wait_delete_completed
10714
10715         # clear stats.
10716         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10717         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10718
10719         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10720                 error "dd failed"
10721         sync
10722         cancel_lru_locks osc
10723         check_stats ost1 "write" 1
10724
10725         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10726         check_stats ost1 "read" 1
10727
10728         > $testdir/$tfile || error "truncate failed"
10729         check_stats ost1 "punch" 1
10730
10731         rm -f $testdir/$tfile || error "file remove failed"
10732         wait_delete_completed
10733         check_stats ost1 "destroy" 1
10734
10735         rm -rf $DIR/$tdir
10736 }
10737 run_test 133c "Verifying OST stats ========================================"
10738
10739 order_2() {
10740         local value=$1
10741         local orig=$value
10742         local order=1
10743
10744         while [ $value -ge 2 ]; do
10745                 order=$((order*2))
10746                 value=$((value/2))
10747         done
10748
10749         if [ $orig -gt $order ]; then
10750                 order=$((order*2))
10751         fi
10752         echo $order
10753 }
10754
10755 size_in_KMGT() {
10756     local value=$1
10757     local size=('K' 'M' 'G' 'T');
10758     local i=0
10759     local size_string=$value
10760
10761     while [ $value -ge 1024 ]; do
10762         if [ $i -gt 3 ]; then
10763             #T is the biggest unit we get here, if that is bigger,
10764             #just return XXXT
10765             size_string=${value}T
10766             break
10767         fi
10768         value=$((value >> 10))
10769         if [ $value -lt 1024 ]; then
10770             size_string=${value}${size[$i]}
10771             break
10772         fi
10773         i=$((i + 1))
10774     done
10775
10776     echo $size_string
10777 }
10778
10779 get_rename_size() {
10780         local size=$1
10781         local context=${2:-.}
10782         local sample=$(do_facet $SINGLEMDS $LCTL \
10783                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10784                 grep -A1 $context |
10785                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10786         echo $sample
10787 }
10788
10789 test_133d() {
10790         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10791         remote_ost_nodsh && skip "remote OST with nodsh"
10792         remote_mds_nodsh && skip "remote MDS with nodsh"
10793         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10794                 skip_env "MDS doesn't support rename stats"
10795
10796         local testdir1=$DIR/${tdir}/stats_testdir1
10797         local testdir2=$DIR/${tdir}/stats_testdir2
10798         mkdir -p $DIR/${tdir}
10799
10800         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10801
10802         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10803         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10804
10805         createmany -o $testdir1/test 512 || error "createmany failed"
10806
10807         # check samedir rename size
10808         mv ${testdir1}/test0 ${testdir1}/test_0
10809
10810         local testdir1_size=$(ls -l $DIR/${tdir} |
10811                 awk '/stats_testdir1/ {print $5}')
10812         local testdir2_size=$(ls -l $DIR/${tdir} |
10813                 awk '/stats_testdir2/ {print $5}')
10814
10815         testdir1_size=$(order_2 $testdir1_size)
10816         testdir2_size=$(order_2 $testdir2_size)
10817
10818         testdir1_size=$(size_in_KMGT $testdir1_size)
10819         testdir2_size=$(size_in_KMGT $testdir2_size)
10820
10821         echo "source rename dir size: ${testdir1_size}"
10822         echo "target rename dir size: ${testdir2_size}"
10823
10824         local cmd="do_facet $SINGLEMDS $LCTL "
10825         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10826
10827         eval $cmd || error "$cmd failed"
10828         local samedir=$($cmd | grep 'same_dir')
10829         local same_sample=$(get_rename_size $testdir1_size)
10830         [ -z "$samedir" ] && error "samedir_rename_size count error"
10831         [[ $same_sample -eq 1 ]] ||
10832                 error "samedir_rename_size error $same_sample"
10833         echo "Check same dir rename stats success"
10834
10835         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10836
10837         # check crossdir rename size
10838         mv ${testdir1}/test_0 ${testdir2}/test_0
10839
10840         testdir1_size=$(ls -l $DIR/${tdir} |
10841                 awk '/stats_testdir1/ {print $5}')
10842         testdir2_size=$(ls -l $DIR/${tdir} |
10843                 awk '/stats_testdir2/ {print $5}')
10844
10845         testdir1_size=$(order_2 $testdir1_size)
10846         testdir2_size=$(order_2 $testdir2_size)
10847
10848         testdir1_size=$(size_in_KMGT $testdir1_size)
10849         testdir2_size=$(size_in_KMGT $testdir2_size)
10850
10851         echo "source rename dir size: ${testdir1_size}"
10852         echo "target rename dir size: ${testdir2_size}"
10853
10854         eval $cmd || error "$cmd failed"
10855         local crossdir=$($cmd | grep 'crossdir')
10856         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10857         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10858         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10859         [[ $src_sample -eq 1 ]] ||
10860                 error "crossdir_rename_size error $src_sample"
10861         [[ $tgt_sample -eq 1 ]] ||
10862                 error "crossdir_rename_size error $tgt_sample"
10863         echo "Check cross dir rename stats success"
10864         rm -rf $DIR/${tdir}
10865 }
10866 run_test 133d "Verifying rename_stats ========================================"
10867
10868 test_133e() {
10869         remote_mds_nodsh && skip "remote MDS with nodsh"
10870         remote_ost_nodsh && skip "remote OST with nodsh"
10871         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10872
10873         local testdir=$DIR/${tdir}/stats_testdir
10874         local ctr f0 f1 bs=32768 count=42 sum
10875
10876         mkdir -p ${testdir} || error "mkdir failed"
10877
10878         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
10879
10880         for ctr in {write,read}_bytes; do
10881                 sync
10882                 cancel_lru_locks osc
10883
10884                 do_facet ost1 $LCTL set_param -n \
10885                         "obdfilter.*.exports.clear=clear"
10886
10887                 if [ $ctr = write_bytes ]; then
10888                         f0=/dev/zero
10889                         f1=${testdir}/${tfile}
10890                 else
10891                         f0=${testdir}/${tfile}
10892                         f1=/dev/null
10893                 fi
10894
10895                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10896                         error "dd failed"
10897                 sync
10898                 cancel_lru_locks osc
10899
10900                 sum=$(do_facet ost1 $LCTL get_param \
10901                         "obdfilter.*.exports.*.stats" |
10902                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10903                                 $1 == ctr { sum += $7 }
10904                                 END { printf("%0.0f", sum) }')
10905
10906                 if ((sum != bs * count)); then
10907                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10908                 fi
10909         done
10910
10911         rm -rf $DIR/${tdir}
10912 }
10913 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10914
10915 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10916
10917 test_133f() {
10918         # First without trusting modes.
10919         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10920         echo "proc_dirs='$proc_dirs'"
10921         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10922         find $proc_dirs -exec cat '{}' \; &> /dev/null
10923
10924         # Second verifying readability.
10925         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
10926
10927         # Verifing writability with badarea_io.
10928         find $proc_dirs \
10929                 -ignore_readdir_race \
10930                 -type f \
10931                 -not -name force_lbug \
10932                 -not -name changelog_mask \
10933                 -exec badarea_io '{}' \; ||
10934                         error "find $proc_dirs failed"
10935 }
10936 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
10937
10938 test_133g() {
10939         remote_mds_nodsh && skip "remote MDS with nodsh"
10940         remote_ost_nodsh && skip "remote OST with nodsh"
10941
10942         # eventually, this can also be replaced with "lctl get_param -R",
10943         # but not until that option is always available on the server
10944         local facet
10945         for facet in mds1 ost1; do
10946                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
10947                         skip_noexit "Too old lustre on $facet"
10948                 local facet_proc_dirs=$(do_facet $facet \
10949                                         \\\ls -d $proc_regexp 2>/dev/null)
10950                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10951                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10952                 do_facet $facet find $facet_proc_dirs \
10953                         ! -name req_history \
10954                         -exec cat '{}' \\\; &> /dev/null
10955
10956                 do_facet $facet find $facet_proc_dirs \
10957                         ! -name req_history \
10958                         -type f \
10959                         -exec cat '{}' \\\; &> /dev/null ||
10960                                 error "proc file read failed"
10961
10962                 do_facet $facet find $facet_proc_dirs \
10963                         -ignore_readdir_race \
10964                         -type f \
10965                         -not -name force_lbug \
10966                         -not -name changelog_mask \
10967                         -exec badarea_io '{}' \\\; ||
10968                                 error "$facet find $facet_proc_dirs failed"
10969         done
10970
10971         # remount the FS in case writes/reads /proc break the FS
10972         cleanup || error "failed to unmount"
10973         setup || error "failed to setup"
10974         true
10975 }
10976 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
10977
10978 test_133h() {
10979         remote_mds_nodsh && skip "remote MDS with nodsh"
10980         remote_ost_nodsh && skip "remote OST with nodsh"
10981         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
10982                 skip "Need MDS version at least 2.9.54"
10983
10984         local facet
10985
10986         for facet in client mds1 ost1; do
10987                 local facet_proc_dirs=$(do_facet $facet \
10988                                         \\\ls -d $proc_regexp 2> /dev/null)
10989                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10990                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10991                 # Get the list of files that are missing the terminating newline
10992                 local missing=($(do_facet $facet \
10993                         find ${facet_proc_dirs} -type f \|              \
10994                                 while read F\; do                       \
10995                                         awk -v FS='\v' -v RS='\v\v'     \
10996                                         "'END { if(NR>0 &&              \
10997                                         \\\$NF !~ /.*\\\n\$/)           \
10998                                                 print FILENAME}'"       \
10999                                         '\$F'\;                         \
11000                                 done 2>/dev/null))
11001                 [ ${#missing[*]} -eq 0 ] ||
11002                         error "files do not end with newline: ${missing[*]}"
11003         done
11004 }
11005 run_test 133h "Proc files should end with newlines"
11006
11007 test_134a() {
11008         remote_mds_nodsh && skip "remote MDS with nodsh"
11009         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11010                 skip "Need MDS version at least 2.7.54"
11011
11012         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11013         cancel_lru_locks mdc
11014
11015         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11016         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11017         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11018
11019         local nr=1000
11020         createmany -o $DIR/$tdir/f $nr ||
11021                 error "failed to create $nr files in $DIR/$tdir"
11022         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11023
11024         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11025         do_facet mds1 $LCTL set_param fail_loc=0x327
11026         do_facet mds1 $LCTL set_param fail_val=500
11027         touch $DIR/$tdir/m
11028
11029         echo "sleep 10 seconds ..."
11030         sleep 10
11031         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11032
11033         do_facet mds1 $LCTL set_param fail_loc=0
11034         do_facet mds1 $LCTL set_param fail_val=0
11035         [ $lck_cnt -lt $unused ] ||
11036                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11037
11038         rm $DIR/$tdir/m
11039         unlinkmany $DIR/$tdir/f $nr
11040 }
11041 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11042
11043 test_134b() {
11044         remote_mds_nodsh && skip "remote MDS with nodsh"
11045         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11046                 skip "Need MDS version at least 2.7.54"
11047
11048         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11049         cancel_lru_locks mdc
11050
11051         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11052                         ldlm.lock_reclaim_threshold_mb)
11053         # disable reclaim temporarily
11054         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11055
11056         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11057         do_facet mds1 $LCTL set_param fail_loc=0x328
11058         do_facet mds1 $LCTL set_param fail_val=500
11059
11060         $LCTL set_param debug=+trace
11061
11062         local nr=600
11063         createmany -o $DIR/$tdir/f $nr &
11064         local create_pid=$!
11065
11066         echo "Sleep $TIMEOUT seconds ..."
11067         sleep $TIMEOUT
11068         if ! ps -p $create_pid  > /dev/null 2>&1; then
11069                 do_facet mds1 $LCTL set_param fail_loc=0
11070                 do_facet mds1 $LCTL set_param fail_val=0
11071                 do_facet mds1 $LCTL set_param \
11072                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11073                 error "createmany finished incorrectly!"
11074         fi
11075         do_facet mds1 $LCTL set_param fail_loc=0
11076         do_facet mds1 $LCTL set_param fail_val=0
11077         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11078         wait $create_pid || return 1
11079
11080         unlinkmany $DIR/$tdir/f $nr
11081 }
11082 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11083
11084 test_140() { #bug-17379
11085         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11086
11087         test_mkdir $DIR/$tdir
11088         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11089         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11090
11091         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11092         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11093         local i=0
11094         while i=$((i + 1)); do
11095                 test_mkdir $i
11096                 cd $i || error "Changing to $i"
11097                 ln -s ../stat stat || error "Creating stat symlink"
11098                 # Read the symlink until ELOOP present,
11099                 # not LBUGing the system is considered success,
11100                 # we didn't overrun the stack.
11101                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11102                 if [ $ret -ne 0 ]; then
11103                         if [ $ret -eq 40 ]; then
11104                                 break  # -ELOOP
11105                         else
11106                                 error "Open stat symlink"
11107                                         return
11108                         fi
11109                 fi
11110         done
11111         i=$((i - 1))
11112         echo "The symlink depth = $i"
11113         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11114                                         error "Invalid symlink depth"
11115
11116         # Test recursive symlink
11117         ln -s symlink_self symlink_self
11118         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11119         echo "open symlink_self returns $ret"
11120         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11121 }
11122 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11123
11124 test_150() {
11125         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11126
11127         local TF="$TMP/$tfile"
11128
11129         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11130         cp $TF $DIR/$tfile
11131         cancel_lru_locks $OSC
11132         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11133         remount_client $MOUNT
11134         df -P $MOUNT
11135         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11136
11137         $TRUNCATE $TF 6000
11138         $TRUNCATE $DIR/$tfile 6000
11139         cancel_lru_locks $OSC
11140         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11141
11142         echo "12345" >>$TF
11143         echo "12345" >>$DIR/$tfile
11144         cancel_lru_locks $OSC
11145         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11146
11147         echo "12345" >>$TF
11148         echo "12345" >>$DIR/$tfile
11149         cancel_lru_locks $OSC
11150         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11151
11152         rm -f $TF
11153         true
11154 }
11155 run_test 150 "truncate/append tests"
11156
11157 #LU-2902 roc_hit was not able to read all values from lproc
11158 function roc_hit_init() {
11159         local list=$(comma_list $(osts_nodes))
11160         local dir=$DIR/$tdir-check
11161         local file=$dir/$tfile
11162         local BEFORE
11163         local AFTER
11164         local idx
11165
11166         test_mkdir $dir
11167         #use setstripe to do a write to every ost
11168         for i in $(seq 0 $((OSTCOUNT-1))); do
11169                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
11170                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11171                 idx=$(printf %04x $i)
11172                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11173                         awk '$1 == "cache_access" {sum += $7}
11174                                 END { printf("%0.0f", sum) }')
11175
11176                 cancel_lru_locks osc
11177                 cat $file >/dev/null
11178
11179                 AFTER=$(get_osd_param $list *OST*$idx stats |
11180                         awk '$1 == "cache_access" {sum += $7}
11181                                 END { printf("%0.0f", sum) }')
11182
11183                 echo BEFORE:$BEFORE AFTER:$AFTER
11184                 if ! let "AFTER - BEFORE == 4"; then
11185                         rm -rf $dir
11186                         error "roc_hit is not safe to use"
11187                 fi
11188                 rm $file
11189         done
11190
11191         rm -rf $dir
11192 }
11193
11194 function roc_hit() {
11195         local list=$(comma_list $(osts_nodes))
11196         echo $(get_osd_param $list '' stats |
11197                 awk '$1 == "cache_hit" {sum += $7}
11198                         END { printf("%0.0f", sum) }')
11199 }
11200
11201 function set_cache() {
11202         local on=1
11203
11204         if [ "$2" == "off" ]; then
11205                 on=0;
11206         fi
11207         local list=$(comma_list $(osts_nodes))
11208         set_osd_param $list '' $1_cache_enable $on
11209
11210         cancel_lru_locks osc
11211 }
11212
11213 test_151() {
11214         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11215         remote_ost_nodsh && skip "remote OST with nodsh"
11216
11217         local CPAGES=3
11218         local list=$(comma_list $(osts_nodes))
11219
11220         # check whether obdfilter is cache capable at all
11221         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11222                 skip "not cache-capable obdfilter"
11223         fi
11224
11225         # check cache is enabled on all obdfilters
11226         if get_osd_param $list '' read_cache_enable | grep 0; then
11227                 skip "oss cache is disabled"
11228         fi
11229
11230         set_osd_param $list '' writethrough_cache_enable 1
11231
11232         # check write cache is enabled on all obdfilters
11233         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11234                 skip "oss write cache is NOT enabled"
11235         fi
11236
11237         roc_hit_init
11238
11239         #define OBD_FAIL_OBD_NO_LRU  0x609
11240         do_nodes $list $LCTL set_param fail_loc=0x609
11241
11242         # pages should be in the case right after write
11243         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11244                 error "dd failed"
11245
11246         local BEFORE=$(roc_hit)
11247         cancel_lru_locks osc
11248         cat $DIR/$tfile >/dev/null
11249         local AFTER=$(roc_hit)
11250
11251         do_nodes $list $LCTL set_param fail_loc=0
11252
11253         if ! let "AFTER - BEFORE == CPAGES"; then
11254                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11255         fi
11256
11257         # the following read invalidates the cache
11258         cancel_lru_locks osc
11259         set_osd_param $list '' read_cache_enable 0
11260         cat $DIR/$tfile >/dev/null
11261
11262         # now data shouldn't be found in the cache
11263         BEFORE=$(roc_hit)
11264         cancel_lru_locks osc
11265         cat $DIR/$tfile >/dev/null
11266         AFTER=$(roc_hit)
11267         if let "AFTER - BEFORE != 0"; then
11268                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11269         fi
11270
11271         set_osd_param $list '' read_cache_enable 1
11272         rm -f $DIR/$tfile
11273 }
11274 run_test 151 "test cache on oss and controls ==============================="
11275
11276 test_152() {
11277         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11278
11279         local TF="$TMP/$tfile"
11280
11281         # simulate ENOMEM during write
11282 #define OBD_FAIL_OST_NOMEM      0x226
11283         lctl set_param fail_loc=0x80000226
11284         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11285         cp $TF $DIR/$tfile
11286         sync || error "sync failed"
11287         lctl set_param fail_loc=0
11288
11289         # discard client's cache
11290         cancel_lru_locks osc
11291
11292         # simulate ENOMEM during read
11293         lctl set_param fail_loc=0x80000226
11294         cmp $TF $DIR/$tfile || error "cmp failed"
11295         lctl set_param fail_loc=0
11296
11297         rm -f $TF
11298 }
11299 run_test 152 "test read/write with enomem ============================"
11300
11301 test_153() {
11302         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11303 }
11304 run_test 153 "test if fdatasync does not crash ======================="
11305
11306 dot_lustre_fid_permission_check() {
11307         local fid=$1
11308         local ffid=$MOUNT/.lustre/fid/$fid
11309         local test_dir=$2
11310
11311         echo "stat fid $fid"
11312         stat $ffid > /dev/null || error "stat $ffid failed."
11313         echo "touch fid $fid"
11314         touch $ffid || error "touch $ffid failed."
11315         echo "write to fid $fid"
11316         cat /etc/hosts > $ffid || error "write $ffid failed."
11317         echo "read fid $fid"
11318         diff /etc/hosts $ffid || error "read $ffid failed."
11319         echo "append write to fid $fid"
11320         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11321         echo "rename fid $fid"
11322         mv $ffid $test_dir/$tfile.1 &&
11323                 error "rename $ffid to $tfile.1 should fail."
11324         touch $test_dir/$tfile.1
11325         mv $test_dir/$tfile.1 $ffid &&
11326                 error "rename $tfile.1 to $ffid should fail."
11327         rm -f $test_dir/$tfile.1
11328         echo "truncate fid $fid"
11329         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11330         echo "link fid $fid"
11331         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11332         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11333                 echo "setfacl fid $fid"
11334                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11335                 echo "getfacl fid $fid"
11336                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11337         fi
11338         echo "unlink fid $fid"
11339         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11340         echo "mknod fid $fid"
11341         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11342
11343         fid=[0xf00000400:0x1:0x0]
11344         ffid=$MOUNT/.lustre/fid/$fid
11345
11346         echo "stat non-exist fid $fid"
11347         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11348         echo "write to non-exist fid $fid"
11349         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11350         echo "link new fid $fid"
11351         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11352
11353         mkdir -p $test_dir/$tdir
11354         touch $test_dir/$tdir/$tfile
11355         fid=$($LFS path2fid $test_dir/$tdir)
11356         rc=$?
11357         [ $rc -ne 0 ] &&
11358                 error "error: could not get fid for $test_dir/$dir/$tfile."
11359
11360         ffid=$MOUNT/.lustre/fid/$fid
11361
11362         echo "ls $fid"
11363         ls $ffid > /dev/null || error "ls $ffid failed."
11364         echo "touch $fid/$tfile.1"
11365         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11366
11367         echo "touch $MOUNT/.lustre/fid/$tfile"
11368         touch $MOUNT/.lustre/fid/$tfile && \
11369                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11370
11371         echo "setxattr to $MOUNT/.lustre/fid"
11372         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11373
11374         echo "listxattr for $MOUNT/.lustre/fid"
11375         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11376
11377         echo "delxattr from $MOUNT/.lustre/fid"
11378         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11379
11380         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11381         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11382                 error "touch invalid fid should fail."
11383
11384         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11385         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11386                 error "touch non-normal fid should fail."
11387
11388         echo "rename $tdir to $MOUNT/.lustre/fid"
11389         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11390                 error "rename to $MOUNT/.lustre/fid should fail."
11391
11392         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11393         then            # LU-3547
11394                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11395                 local new_obf_mode=777
11396
11397                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11398                 chmod $new_obf_mode $DIR/.lustre/fid ||
11399                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11400
11401                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11402                 [ $obf_mode -eq $new_obf_mode ] ||
11403                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11404
11405                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11406                 chmod $old_obf_mode $DIR/.lustre/fid ||
11407                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11408         fi
11409
11410         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11411         fid=$($LFS path2fid $test_dir/$tfile-2)
11412
11413         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11414         then # LU-5424
11415                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11416                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11417                         error "create lov data thru .lustre failed"
11418         fi
11419         echo "cp /etc/passwd $test_dir/$tfile-2"
11420         cp /etc/passwd $test_dir/$tfile-2 ||
11421                 error "copy to $test_dir/$tfile-2 failed."
11422         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11423         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11424                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11425
11426         rm -rf $test_dir/tfile.lnk
11427         rm -rf $test_dir/$tfile-2
11428 }
11429
11430 test_154A() {
11431         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11432                 skip "Need MDS version at least 2.4.1"
11433
11434         local tf=$DIR/$tfile
11435         touch $tf
11436
11437         local fid=$($LFS path2fid $tf)
11438         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11439
11440         # check that we get the same pathname back
11441         local found=$($LFS fid2path $MOUNT "$fid")
11442         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11443         [ "$found" == "$tf" ] ||
11444                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11445 }
11446 run_test 154A "lfs path2fid and fid2path basic checks"
11447
11448 test_154B() {
11449         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11450                 skip "Need MDS version at least 2.4.1"
11451
11452         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11453         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11454         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11455         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11456
11457         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11458         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11459
11460         # check that we get the same pathname
11461         echo "PFID: $PFID, name: $name"
11462         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11463         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11464         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11465                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11466
11467         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11468 }
11469 run_test 154B "verify the ll_decode_linkea tool"
11470
11471 test_154a() {
11472         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11473         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11474         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11475                 skip "Need MDS version at least 2.2.51"
11476         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11477
11478         cp /etc/hosts $DIR/$tfile
11479
11480         fid=$($LFS path2fid $DIR/$tfile)
11481         rc=$?
11482         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11483
11484         dot_lustre_fid_permission_check "$fid" $DIR ||
11485                 error "dot lustre permission check $fid failed"
11486
11487         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11488
11489         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11490
11491         touch $MOUNT/.lustre/file &&
11492                 error "creation is not allowed under .lustre"
11493
11494         mkdir $MOUNT/.lustre/dir &&
11495                 error "mkdir is not allowed under .lustre"
11496
11497         rm -rf $DIR/$tfile
11498 }
11499 run_test 154a "Open-by-FID"
11500
11501 test_154b() {
11502         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11503         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11504         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11505         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11506                 skip "Need MDS version at least 2.2.51"
11507
11508         local remote_dir=$DIR/$tdir/remote_dir
11509         local MDTIDX=1
11510         local rc=0
11511
11512         mkdir -p $DIR/$tdir
11513         $LFS mkdir -i $MDTIDX $remote_dir ||
11514                 error "create remote directory failed"
11515
11516         cp /etc/hosts $remote_dir/$tfile
11517
11518         fid=$($LFS path2fid $remote_dir/$tfile)
11519         rc=$?
11520         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11521
11522         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11523                 error "dot lustre permission check $fid failed"
11524         rm -rf $DIR/$tdir
11525 }
11526 run_test 154b "Open-by-FID for remote directory"
11527
11528 test_154c() {
11529         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11530                 skip "Need MDS version at least 2.4.1"
11531
11532         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11533         local FID1=$($LFS path2fid $DIR/$tfile.1)
11534         local FID2=$($LFS path2fid $DIR/$tfile.2)
11535         local FID3=$($LFS path2fid $DIR/$tfile.3)
11536
11537         local N=1
11538         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11539                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11540                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11541                 local want=FID$N
11542                 [ "$FID" = "${!want}" ] ||
11543                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11544                 N=$((N + 1))
11545         done
11546
11547         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11548         do
11549                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11550                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11551                 N=$((N + 1))
11552         done
11553 }
11554 run_test 154c "lfs path2fid and fid2path multiple arguments"
11555
11556 test_154d() {
11557         remote_mds_nodsh && skip "remote MDS with nodsh"
11558         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11559                 skip "Need MDS version at least 2.5.53"
11560
11561         if remote_mds; then
11562                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11563         else
11564                 nid="0@lo"
11565         fi
11566         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11567         local fd
11568         local cmd
11569
11570         rm -f $DIR/$tfile
11571         touch $DIR/$tfile
11572
11573         local fid=$($LFS path2fid $DIR/$tfile)
11574         # Open the file
11575         fd=$(free_fd)
11576         cmd="exec $fd<$DIR/$tfile"
11577         eval $cmd
11578         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11579         echo "$fid_list" | grep "$fid"
11580         rc=$?
11581
11582         cmd="exec $fd>/dev/null"
11583         eval $cmd
11584         if [ $rc -ne 0 ]; then
11585                 error "FID $fid not found in open files list $fid_list"
11586         fi
11587 }
11588 run_test 154d "Verify open file fid"
11589
11590 test_154e()
11591 {
11592         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11593                 skip "Need MDS version at least 2.6.50"
11594
11595         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11596                 error ".lustre returned by readdir"
11597         fi
11598 }
11599 run_test 154e ".lustre is not returned by readdir"
11600
11601 test_154f() {
11602         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11603
11604         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11605         test_mkdir -p -c1 $DIR/$tdir/d
11606         # test dirs inherit from its stripe
11607         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11608         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11609         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11610         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11611         touch $DIR/f
11612
11613         # get fid of parents
11614         local FID0=$($LFS path2fid $DIR/$tdir/d)
11615         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11616         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11617         local FID3=$($LFS path2fid $DIR)
11618
11619         # check that path2fid --parents returns expected <parent_fid>/name
11620         # 1) test for a directory (single parent)
11621         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11622         [ "$parent" == "$FID0/foo1" ] ||
11623                 error "expected parent: $FID0/foo1, got: $parent"
11624
11625         # 2) test for a file with nlink > 1 (multiple parents)
11626         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11627         echo "$parent" | grep -F "$FID1/$tfile" ||
11628                 error "$FID1/$tfile not returned in parent list"
11629         echo "$parent" | grep -F "$FID2/link" ||
11630                 error "$FID2/link not returned in parent list"
11631
11632         # 3) get parent by fid
11633         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11634         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11635         echo "$parent" | grep -F "$FID1/$tfile" ||
11636                 error "$FID1/$tfile not returned in parent list (by fid)"
11637         echo "$parent" | grep -F "$FID2/link" ||
11638                 error "$FID2/link not returned in parent list (by fid)"
11639
11640         # 4) test for entry in root directory
11641         parent=$($LFS path2fid --parents $DIR/f)
11642         echo "$parent" | grep -F "$FID3/f" ||
11643                 error "$FID3/f not returned in parent list"
11644
11645         # 5) test it on root directory
11646         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11647                 error "$MOUNT should not have parents"
11648
11649         # enable xattr caching and check that linkea is correctly updated
11650         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11651         save_lustre_params client "llite.*.xattr_cache" > $save
11652         lctl set_param llite.*.xattr_cache 1
11653
11654         # 6.1) linkea update on rename
11655         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11656
11657         # get parents by fid
11658         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11659         # foo1 should no longer be returned in parent list
11660         echo "$parent" | grep -F "$FID1" &&
11661                 error "$FID1 should no longer be in parent list"
11662         # the new path should appear
11663         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11664                 error "$FID2/$tfile.moved is not in parent list"
11665
11666         # 6.2) linkea update on unlink
11667         rm -f $DIR/$tdir/d/foo2/link
11668         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11669         # foo2/link should no longer be returned in parent list
11670         echo "$parent" | grep -F "$FID2/link" &&
11671                 error "$FID2/link should no longer be in parent list"
11672         true
11673
11674         rm -f $DIR/f
11675         restore_lustre_params < $save
11676         rm -f $save
11677 }
11678 run_test 154f "get parent fids by reading link ea"
11679
11680 test_154g()
11681 {
11682         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11683         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11684            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11685                 skip "Need MDS version at least 2.6.92"
11686
11687         mkdir -p $DIR/$tdir
11688         llapi_fid_test -d $DIR/$tdir
11689 }
11690 run_test 154g "various llapi FID tests"
11691
11692 test_155_small_load() {
11693     local temp=$TMP/$tfile
11694     local file=$DIR/$tfile
11695
11696     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11697         error "dd of=$temp bs=6096 count=1 failed"
11698     cp $temp $file
11699     cancel_lru_locks $OSC
11700     cmp $temp $file || error "$temp $file differ"
11701
11702     $TRUNCATE $temp 6000
11703     $TRUNCATE $file 6000
11704     cmp $temp $file || error "$temp $file differ (truncate1)"
11705
11706     echo "12345" >>$temp
11707     echo "12345" >>$file
11708     cmp $temp $file || error "$temp $file differ (append1)"
11709
11710     echo "12345" >>$temp
11711     echo "12345" >>$file
11712     cmp $temp $file || error "$temp $file differ (append2)"
11713
11714     rm -f $temp $file
11715     true
11716 }
11717
11718 test_155_big_load() {
11719         remote_ost_nodsh && skip "remote OST with nodsh"
11720
11721         local temp=$TMP/$tfile
11722         local file=$DIR/$tfile
11723
11724         free_min_max
11725         local cache_size=$(do_facet ost$((MAXI+1)) \
11726                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11727         local large_file_size=$((cache_size * 2))
11728
11729         echo "OSS cache size: $cache_size KB"
11730         echo "Large file size: $large_file_size KB"
11731
11732         [ $MAXV -le $large_file_size ] &&
11733                 skip_env "max available OST size needs > $large_file_size KB"
11734
11735         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11736
11737         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11738                 error "dd of=$temp bs=$large_file_size count=1k failed"
11739         cp $temp $file
11740         ls -lh $temp $file
11741         cancel_lru_locks osc
11742         cmp $temp $file || error "$temp $file differ"
11743
11744         rm -f $temp $file
11745         true
11746 }
11747
11748 save_writethrough() {
11749         local facets=$(get_facets OST)
11750
11751         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
11752         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
11753 }
11754
11755 test_155a() {
11756         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11757
11758         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11759
11760         save_writethrough $p
11761
11762         set_cache read on
11763         set_cache writethrough on
11764         test_155_small_load
11765         restore_lustre_params < $p
11766         rm -f $p
11767 }
11768 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11769
11770 test_155b() {
11771         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11772
11773         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11774
11775         save_writethrough $p
11776
11777         set_cache read on
11778         set_cache writethrough off
11779         test_155_small_load
11780         restore_lustre_params < $p
11781         rm -f $p
11782 }
11783 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11784
11785 test_155c() {
11786         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11787
11788         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11789
11790         save_writethrough $p
11791
11792         set_cache read off
11793         set_cache writethrough on
11794         test_155_small_load
11795         restore_lustre_params < $p
11796         rm -f $p
11797 }
11798 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11799
11800 test_155d() {
11801         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11802
11803         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11804
11805         save_writethrough $p
11806
11807         set_cache read off
11808         set_cache writethrough off
11809         test_155_small_load
11810         restore_lustre_params < $p
11811         rm -f $p
11812 }
11813 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11814
11815 test_155e() {
11816         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11817
11818         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11819
11820         save_writethrough $p
11821
11822         set_cache read on
11823         set_cache writethrough on
11824         test_155_big_load
11825         restore_lustre_params < $p
11826         rm -f $p
11827 }
11828 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11829
11830 test_155f() {
11831         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11832
11833         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11834
11835         save_writethrough $p
11836
11837         set_cache read on
11838         set_cache writethrough off
11839         test_155_big_load
11840         restore_lustre_params < $p
11841         rm -f $p
11842 }
11843 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11844
11845 test_155g() {
11846         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11847
11848         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11849
11850         save_writethrough $p
11851
11852         set_cache read off
11853         set_cache writethrough on
11854         test_155_big_load
11855         restore_lustre_params < $p
11856         rm -f $p
11857 }
11858 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11859
11860 test_155h() {
11861         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11862
11863         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11864
11865         save_writethrough $p
11866
11867         set_cache read off
11868         set_cache writethrough off
11869         test_155_big_load
11870         restore_lustre_params < $p
11871         rm -f $p
11872 }
11873 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11874
11875 test_156() {
11876         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11877         remote_ost_nodsh && skip "remote OST with nodsh"
11878         [ "$(facet_fstype ost1)" = "zfs" -a \
11879            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
11880                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
11881
11882         local CPAGES=3
11883         local BEFORE
11884         local AFTER
11885         local file="$DIR/$tfile"
11886         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11887
11888         save_writethrough $p
11889         roc_hit_init
11890
11891         log "Turn on read and write cache"
11892         set_cache read on
11893         set_cache writethrough on
11894
11895         log "Write data and read it back."
11896         log "Read should be satisfied from the cache."
11897         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11898         BEFORE=$(roc_hit)
11899         cancel_lru_locks osc
11900         cat $file >/dev/null
11901         AFTER=$(roc_hit)
11902         if ! let "AFTER - BEFORE == CPAGES"; then
11903                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11904         else
11905                 log "cache hits:: before: $BEFORE, after: $AFTER"
11906         fi
11907
11908         log "Read again; it should be satisfied from the cache."
11909         BEFORE=$AFTER
11910         cancel_lru_locks osc
11911         cat $file >/dev/null
11912         AFTER=$(roc_hit)
11913         if ! let "AFTER - BEFORE == CPAGES"; then
11914                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11915         else
11916                 log "cache hits:: before: $BEFORE, after: $AFTER"
11917         fi
11918
11919         log "Turn off the read cache and turn on the write cache"
11920         set_cache read off
11921         set_cache writethrough on
11922
11923         log "Read again; it should be satisfied from the cache."
11924         BEFORE=$(roc_hit)
11925         cancel_lru_locks osc
11926         cat $file >/dev/null
11927         AFTER=$(roc_hit)
11928         if ! let "AFTER - BEFORE == CPAGES"; then
11929                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11930         else
11931                 log "cache hits:: before: $BEFORE, after: $AFTER"
11932         fi
11933
11934         log "Read again; it should not be satisfied from the cache."
11935         BEFORE=$AFTER
11936         cancel_lru_locks osc
11937         cat $file >/dev/null
11938         AFTER=$(roc_hit)
11939         if ! let "AFTER - BEFORE == 0"; then
11940                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11941         else
11942                 log "cache hits:: before: $BEFORE, after: $AFTER"
11943         fi
11944
11945         log "Write data and read it back."
11946         log "Read should be satisfied from the cache."
11947         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11948         BEFORE=$(roc_hit)
11949         cancel_lru_locks osc
11950         cat $file >/dev/null
11951         AFTER=$(roc_hit)
11952         if ! let "AFTER - BEFORE == CPAGES"; then
11953                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11954         else
11955                 log "cache hits:: before: $BEFORE, after: $AFTER"
11956         fi
11957
11958         log "Read again; it should not be satisfied from the cache."
11959         BEFORE=$AFTER
11960         cancel_lru_locks osc
11961         cat $file >/dev/null
11962         AFTER=$(roc_hit)
11963         if ! let "AFTER - BEFORE == 0"; then
11964                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11965         else
11966                 log "cache hits:: before: $BEFORE, after: $AFTER"
11967         fi
11968
11969         log "Turn off read and write cache"
11970         set_cache read off
11971         set_cache writethrough off
11972
11973         log "Write data and read it back"
11974         log "It should not be satisfied from the cache."
11975         rm -f $file
11976         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11977         cancel_lru_locks osc
11978         BEFORE=$(roc_hit)
11979         cat $file >/dev/null
11980         AFTER=$(roc_hit)
11981         if ! let "AFTER - BEFORE == 0"; then
11982                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11983         else
11984                 log "cache hits:: before: $BEFORE, after: $AFTER"
11985         fi
11986
11987         log "Turn on the read cache and turn off the write cache"
11988         set_cache read on
11989         set_cache writethrough off
11990
11991         log "Write data and read it back"
11992         log "It should not be satisfied from the cache."
11993         rm -f $file
11994         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11995         BEFORE=$(roc_hit)
11996         cancel_lru_locks osc
11997         cat $file >/dev/null
11998         AFTER=$(roc_hit)
11999         if ! let "AFTER - BEFORE == 0"; then
12000                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12001         else
12002                 log "cache hits:: before: $BEFORE, after: $AFTER"
12003         fi
12004
12005         log "Read again; it should be satisfied from the cache."
12006         BEFORE=$(roc_hit)
12007         cancel_lru_locks osc
12008         cat $file >/dev/null
12009         AFTER=$(roc_hit)
12010         if ! let "AFTER - BEFORE == CPAGES"; then
12011                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12012         else
12013                 log "cache hits:: before: $BEFORE, after: $AFTER"
12014         fi
12015
12016         restore_lustre_params < $p
12017         rm -f $p $file
12018 }
12019 run_test 156 "Verification of tunables"
12020
12021 test_160a() {
12022         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12023         remote_mds_nodsh && skip "remote MDS with nodsh"
12024         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12025                 skip "Need MDS version at least 2.2.0"
12026
12027         changelog_register || error "changelog_register failed"
12028         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12029         changelog_users $SINGLEMDS | grep -q $cl_user ||
12030                 error "User $cl_user not found in changelog_users"
12031
12032         # change something
12033         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12034         changelog_clear 0 || error "changelog_clear failed"
12035         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12036         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12037         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12038         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12039         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12040         rm $DIR/$tdir/pics/desktop.jpg
12041
12042         changelog_dump | tail -10
12043
12044         echo "verifying changelog mask"
12045         changelog_chmask "-MKDIR"
12046         changelog_chmask "-CLOSE"
12047
12048         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12049         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12050
12051         changelog_chmask "+MKDIR"
12052         changelog_chmask "+CLOSE"
12053
12054         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12055         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12056
12057         changelog_dump | tail -10
12058         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12059         CLOSES=$(changelog_dump | grep -c "CLOSE")
12060         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12061         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12062
12063         # verify contents
12064         echo "verifying target fid"
12065         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12066         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12067         [ "$fidc" == "$fidf" ] ||
12068                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12069         echo "verifying parent fid"
12070         # The FID returned from the Changelog may be the directory shard on
12071         # a different MDT, and not the FID returned by path2fid on the parent.
12072         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12073         # since this is what will matter when recreating this file in the tree.
12074         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12075         local pathp=$($LFS fid2path $MOUNT "$fidp")
12076         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12077                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12078
12079         echo "getting records for $cl_user"
12080         changelog_users $SINGLEMDS
12081         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12082         local nclr=3
12083         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12084                 error "changelog_clear failed"
12085         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12086         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12087         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12088                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12089
12090         local min0_rec=$(changelog_users $SINGLEMDS |
12091                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12092         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12093                           awk '{ print $1; exit; }')
12094
12095         changelog_dump | tail -n 5
12096         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12097         [ $first_rec == $((min0_rec + 1)) ] ||
12098                 error "first index should be $min0_rec + 1 not $first_rec"
12099
12100         # LU-3446 changelog index reset on MDT restart
12101         local cur_rec1=$(changelog_users $SINGLEMDS |
12102                          awk '/^current.index:/ { print $NF }')
12103         changelog_clear 0 ||
12104                 error "clear all changelog records for $cl_user failed"
12105         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12106         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12107                 error "Fail to start $SINGLEMDS"
12108         local cur_rec2=$(changelog_users $SINGLEMDS |
12109                          awk '/^current.index:/ { print $NF }')
12110         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12111         [ $cur_rec1 == $cur_rec2 ] ||
12112                 error "current index should be $cur_rec1 not $cur_rec2"
12113
12114         echo "verifying users from this test are deregistered"
12115         changelog_deregister || error "changelog_deregister failed"
12116         changelog_users $SINGLEMDS | grep -q $cl_user &&
12117                 error "User '$cl_user' still in changelog_users"
12118
12119         # lctl get_param -n mdd.*.changelog_users
12120         # current index: 144
12121         # ID    index (idle seconds)
12122         # cl3   144 (2)
12123         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12124                 # this is the normal case where all users were deregistered
12125                 # make sure no new records are added when no users are present
12126                 local last_rec1=$(changelog_users $SINGLEMDS |
12127                                   awk '/^current.index:/ { print $NF }')
12128                 touch $DIR/$tdir/chloe
12129                 local last_rec2=$(changelog_users $SINGLEMDS |
12130                                   awk '/^current.index:/ { print $NF }')
12131                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12132                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12133         else
12134                 # any changelog users must be leftovers from a previous test
12135                 changelog_users $SINGLEMDS
12136                 echo "other changelog users; can't verify off"
12137         fi
12138 }
12139 run_test 160a "changelog sanity"
12140
12141 test_160b() { # LU-3587
12142         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12143         remote_mds_nodsh && skip "remote MDS with nodsh"
12144         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12145                 skip "Need MDS version at least 2.2.0"
12146
12147         changelog_register || error "changelog_register failed"
12148         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12149         changelog_users $SINGLEMDS | grep -q $cl_user ||
12150                 error "User '$cl_user' not found in changelog_users"
12151
12152         local longname1=$(str_repeat a 255)
12153         local longname2=$(str_repeat b 255)
12154
12155         cd $DIR
12156         echo "creating very long named file"
12157         touch $longname1 || error "create of '$longname1' failed"
12158         echo "renaming very long named file"
12159         mv $longname1 $longname2
12160
12161         changelog_dump | grep RENME | tail -n 5
12162         rm -f $longname2
12163 }
12164 run_test 160b "Verify that very long rename doesn't crash in changelog"
12165
12166 test_160c() {
12167         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12168         remote_mds_nodsh && skip "remote MDS with nodsh"
12169
12170         local rc=0
12171         local server_version=$(lustre_version_code $SINGLEMDS)
12172
12173         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12174                 [[ $server_version -gt $(version_code 2.5.1) &&
12175                    $server_version -lt $(version_code 2.5.50) ]] ||
12176                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12177
12178         # Registration step
12179         changelog_register || error "changelog_register failed"
12180
12181         rm -rf $DIR/$tdir
12182         mkdir -p $DIR/$tdir
12183         $MCREATE $DIR/$tdir/foo_160c
12184         changelog_chmask "-TRUNC"
12185         $TRUNCATE $DIR/$tdir/foo_160c 200
12186         changelog_chmask "+TRUNC"
12187         $TRUNCATE $DIR/$tdir/foo_160c 199
12188         changelog_dump | tail -n 5
12189         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12190         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12191 }
12192 run_test 160c "verify that changelog log catch the truncate event"
12193
12194 test_160d() {
12195         remote_mds_nodsh && skip "remote MDS with nodsh"
12196         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12197         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12198         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
12199                 skip "Need MDS version at least 2.7.60"
12200
12201         # Registration step
12202         changelog_register || error "changelog_register failed"
12203
12204         mkdir -p $DIR/$tdir/migrate_dir
12205         changelog_clear 0 || error "changelog_clear failed"
12206
12207         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12208         changelog_dump | tail -n 5
12209         local migrates=$(changelog_dump | grep -c "MIGRT")
12210         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12211 }
12212 run_test 160d "verify that changelog log catch the migrate event"
12213
12214 test_160e() {
12215         remote_mds_nodsh && skip "remote MDS with nodsh"
12216
12217         # Create a user
12218         changelog_register || error "changelog_register failed"
12219
12220         # Delete a future user (expect fail)
12221         local MDT0=$(facet_svc $SINGLEMDS)
12222         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12223         local rc=$?
12224
12225         if [ $rc -eq 0 ]; then
12226                 error "Deleted non-existant user cl77"
12227         elif [ $rc -ne 2 ]; then
12228                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12229         fi
12230
12231         # Clear to a bad index (1 billion should be safe)
12232         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12233         rc=$?
12234
12235         if [ $rc -eq 0 ]; then
12236                 error "Successfully cleared to invalid CL index"
12237         elif [ $rc -ne 22 ]; then
12238                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12239         fi
12240 }
12241 run_test 160e "changelog negative testing (should return errors)"
12242
12243 test_160f() {
12244         remote_mds_nodsh && skip "remote MDS with nodsh"
12245         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12246                 skip "Need MDS version at least 2.10.56"
12247
12248         local mdts=$(comma_list $(mdts_nodes))
12249
12250         # Create a user
12251         changelog_register || error "first changelog_register failed"
12252         changelog_register || error "second changelog_register failed"
12253         local cl_users=(${CL_USERS[$SINGLEMDS]})
12254         local cl_user1="${cl_users[0]}"
12255         local cl_user2="${cl_users[1]}"
12256
12257         # generate some changelog records to accumulate on each MDT
12258         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12259         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12260                 error "create $DIR/$tdir/$tfile failed"
12261
12262         # check changelogs have been generated
12263         nbcl=$(changelog_dump | wc -l)
12264         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12265
12266         # changelog_gc=1 should be set by default
12267         for param in "changelog_max_idle_time=10" \
12268                      "changelog_min_gc_interval=2" \
12269                      "changelog_min_free_cat_entries=3"; do
12270                 local MDT0=$(facet_svc $SINGLEMDS)
12271                 local var="${param%=*}"
12272                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12273
12274                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12275                 do_nodes $mdts $LCTL set_param mdd.*.$param
12276         done
12277
12278         # simulate changelog catalog almost full
12279         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12280         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12281
12282         sleep 6
12283         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user1)
12284         [ -n "$user_rec1" ] ||
12285                 error "User $cl_user1 not found in changelog_users"
12286         __changelog_clear $SINGLEMDS $cl_user1 +2
12287         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user1)
12288         [ -n "$user_rec2" ] ||
12289                 error "User $cl_user1 not found in changelog_users"
12290         echo "verifying user clear: $user_rec1 + 2 == $user_rec2"
12291         [ $((user_rec1 + 2)) == $user_rec2 ] ||
12292                 error "user index expected $user_rec1 + 2, but is $user_rec2"
12293         sleep 5
12294
12295         # generate one more changelog to trigger fail_loc
12296         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
12297
12298         # ensure gc thread is done
12299         wait_update_facet $SINGLEMDS \
12300                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
12301
12302         # check user still registered
12303         changelog_users $SINGLEMDS | grep -q "$cl_user1" ||
12304                 error "User $cl_user1 not found in changelog_users"
12305         # check user2 unregistered
12306         changelog_users $SINGLEMDS | grep -q "$cl_user2" &&
12307                 error "User $cl_user2 still found in changelog_users"
12308
12309         # check changelogs are present and starting at $user_rec2 + 1
12310         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12311                           awk '{ print $1; exit; }')
12312
12313         echo "verifying min purge: $user_rec2 + 1 == $first_rec"
12314         [ $((user_rec2 + 1)) == $first_rec ] ||
12315                 error "first index should be $user_rec2 + 1, but is $first_rec"
12316 }
12317 run_test 160f "changelog garbage collect (timestamped users)"
12318
12319 test_160g() {
12320         remote_mds_nodsh && skip "remote MDS with nodsh"
12321         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12322                 skip "Need MDS version at least 2.10.56"
12323
12324         local mdts=$(comma_list $(mdts_nodes))
12325
12326         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12327         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12328
12329         # Create a user
12330         changelog_register || error "first changelog_register failed"
12331         changelog_register || error "second changelog_register failed"
12332         local cl_users=(${CL_USERS[$SINGLEMDS]})
12333         local cl_user1="${cl_users[0]}"
12334         local cl_user2="${cl_users[1]}"
12335
12336         # generate some changelog records to accumulate on each MDT
12337         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12338         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12339                 error "create $DIR/$tdir/$tfile failed"
12340
12341         # check changelogs have been generated
12342         nbcl=$(changelog_dump | wc -l)
12343         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12344
12345         # changelog_gc=1 should be set by default
12346         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12347                      "changelog_min_gc_interval=2" \
12348                      "changelog_min_free_cat_entries=3"; do
12349                 local MDT0=$(facet_svc $SINGLEMDS)
12350                 local var="${param%=*}"
12351                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12352
12353                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12354                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12355                         error "unable to set mdd.*.$param"
12356         done
12357
12358         # simulate changelog catalog almost full
12359         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12360         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12361
12362         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user1)
12363
12364         __changelog_clear $SINGLEMDS $cl_user1 +3
12365
12366         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user1)
12367
12368         echo "verifying user clear: $user_rec1 + 3 == $user_rec2"
12369         [ $((user_rec1 + 3)) == $user_rec2 ] ||
12370                 error "user index expected $user_rec1 + 3, but is $user_rec2"
12371
12372         # generate one more changelog to trigger fail_loc
12373         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
12374
12375         # ensure gc thread is done
12376         wait_update_facet $SINGLEMDS \
12377                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
12378
12379         # check user still registered
12380         [ -n "$(changelog_user_rec $SINGLEMDS $cl_user1)" ] ||
12381                 error "User $cl_user1 not found in changelog_users"
12382         # check user2 unregistered
12383         [ -z "$(changelog_user_rec $SINGLEMDS $cl_user2)" ] ||
12384                 error "User $cl_user2 still found in changelog_users"
12385
12386         # check changelogs are present and starting at $user_rec2 + 1
12387         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12388                           awk '{ print $1; exit; }')
12389
12390         echo "verifying min purge: $user_rec2 + 1 == $first_rec"
12391         [ $((user_rec2 + 1)) == $first_rec ] ||
12392                 error "first index should be $user_rec2 + 1, but is $first_rec"
12393 }
12394 run_test 160g "changelog garbage collect (old users)"
12395
12396 test_160h() {
12397
12398         local mdts=$(comma_list $(mdts_nodes))
12399
12400         changelog_register || error "first changelog_register failed"
12401
12402         # generate some changelog records to accumulate on each MDT
12403         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12404         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12405                 error "create $DIR/$tdir/$tfile failed"
12406
12407         # check changelogs have been generated
12408         local nbcl=$(changelog_dump | wc -l)
12409         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12410
12411         # simulate race between register and unregister
12412         # XXX as fail_loc is set per-MDS, with DNE configs the race
12413         # simulation will only occur for one MDT per MDS and for the
12414         # others the normal race scenario will take place
12415         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12416         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12417         do_nodes $mdts $LCTL set_param fail_val=1
12418
12419         # unregister 1st user
12420         changelog_deregister &
12421         local pid1=$!
12422         # wait some time for deregister work to reach race rdv
12423         sleep 2
12424         # register 2nd user
12425         changelog_register || error "2nd user register failed"
12426
12427         wait $pid1 || error "1st user deregister failed"
12428
12429         local i
12430         local last_rec
12431         declare -A LAST_REC
12432         for i in $(seq $MDSCOUNT); do
12433                 if changelog_users mds$i | grep "^cl"; then
12434                         # make sure new records are added with one user present
12435                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12436                                           awk '/^current.index:/ { print $NF }')
12437                 else
12438                         error "mds$i has no user registered"
12439                 fi
12440         done
12441
12442         # generate more changelog records to accumulate on each MDT
12443         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12444                 error "create $DIR/$tdir/${tfile}bis failed"
12445
12446         for i in $(seq $MDSCOUNT); do
12447                 last_rec=$(changelog_users $SINGLEMDS |
12448                            awk '/^current.index:/ { print $NF }')
12449                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12450                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12451                         error "changelogs are off on mds$i"
12452         done
12453 }
12454 run_test 160h "changelog user register/unregister race"
12455
12456 test_161a() {
12457         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12458
12459         test_mkdir -c1 $DIR/$tdir
12460         cp /etc/hosts $DIR/$tdir/$tfile
12461         test_mkdir -c1 $DIR/$tdir/foo1
12462         test_mkdir -c1 $DIR/$tdir/foo2
12463         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12464         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12465         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12466         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12467         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12468         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12469                 $LFS fid2path $DIR $FID
12470                 error "bad link ea"
12471         fi
12472         # middle
12473         rm $DIR/$tdir/foo2/zachary
12474         # last
12475         rm $DIR/$tdir/foo2/thor
12476         # first
12477         rm $DIR/$tdir/$tfile
12478         # rename
12479         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12480         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12481                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12482         rm $DIR/$tdir/foo2/maggie
12483
12484         # overflow the EA
12485         local longname=$tfile.avg_len_is_thirty_two_
12486         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12487                 error_noexit 'failed to unlink many hardlinks'" EXIT
12488         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12489                 error "failed to hardlink many files"
12490         links=$($LFS fid2path $DIR $FID | wc -l)
12491         echo -n "${links}/1000 links in link EA"
12492         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12493 }
12494 run_test 161a "link ea sanity"
12495
12496 test_161b() {
12497         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12498         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12499
12500         local MDTIDX=1
12501         local remote_dir=$DIR/$tdir/remote_dir
12502
12503         mkdir -p $DIR/$tdir
12504         $LFS mkdir -i $MDTIDX $remote_dir ||
12505                 error "create remote directory failed"
12506
12507         cp /etc/hosts $remote_dir/$tfile
12508         mkdir -p $remote_dir/foo1
12509         mkdir -p $remote_dir/foo2
12510         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12511         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12512         ln $remote_dir/$tfile $remote_dir/foo1/luna
12513         ln $remote_dir/$tfile $remote_dir/foo2/thor
12514
12515         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12516                      tr -d ']')
12517         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12518                 $LFS fid2path $DIR $FID
12519                 error "bad link ea"
12520         fi
12521         # middle
12522         rm $remote_dir/foo2/zachary
12523         # last
12524         rm $remote_dir/foo2/thor
12525         # first
12526         rm $remote_dir/$tfile
12527         # rename
12528         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12529         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12530         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12531                 $LFS fid2path $DIR $FID
12532                 error "bad link rename"
12533         fi
12534         rm $remote_dir/foo2/maggie
12535
12536         # overflow the EA
12537         local longname=filename_avg_len_is_thirty_two_
12538         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12539                 error "failed to hardlink many files"
12540         links=$($LFS fid2path $DIR $FID | wc -l)
12541         echo -n "${links}/1000 links in link EA"
12542         [[ ${links} -gt 60 ]] ||
12543                 error "expected at least 60 links in link EA"
12544         unlinkmany $remote_dir/foo2/$longname 1000 ||
12545         error "failed to unlink many hardlinks"
12546 }
12547 run_test 161b "link ea sanity under remote directory"
12548
12549 test_161c() {
12550         remote_mds_nodsh && skip "remote MDS with nodsh"
12551         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12552         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12553                 skip "Need MDS version at least 2.1.5"
12554
12555         # define CLF_RENAME_LAST 0x0001
12556         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12557         changelog_register || error "changelog_register failed"
12558
12559         rm -rf $DIR/$tdir
12560         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12561         touch $DIR/$tdir/foo_161c
12562         touch $DIR/$tdir/bar_161c
12563         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12564         changelog_dump | grep RENME | tail -n 5
12565         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12566         changelog_clear 0 || error "changelog_clear failed"
12567         if [ x$flags != "x0x1" ]; then
12568                 error "flag $flags is not 0x1"
12569         fi
12570
12571         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12572         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12573         touch $DIR/$tdir/foo_161c
12574         touch $DIR/$tdir/bar_161c
12575         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12576         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12577         changelog_dump | grep RENME | tail -n 5
12578         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12579         changelog_clear 0 || error "changelog_clear failed"
12580         if [ x$flags != "x0x0" ]; then
12581                 error "flag $flags is not 0x0"
12582         fi
12583         echo "rename overwrite a target having nlink > 1," \
12584                 "changelog record has flags of $flags"
12585
12586         # rename doesn't overwrite a target (changelog flag 0x0)
12587         touch $DIR/$tdir/foo_161c
12588         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12589         changelog_dump | grep RENME | tail -n 5
12590         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12591         changelog_clear 0 || error "changelog_clear failed"
12592         if [ x$flags != "x0x0" ]; then
12593                 error "flag $flags is not 0x0"
12594         fi
12595         echo "rename doesn't overwrite a target," \
12596                 "changelog record has flags of $flags"
12597
12598         # define CLF_UNLINK_LAST 0x0001
12599         # unlink a file having nlink = 1 (changelog flag 0x1)
12600         rm -f $DIR/$tdir/foo2_161c
12601         changelog_dump | grep UNLNK | tail -n 5
12602         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12603         changelog_clear 0 || error "changelog_clear failed"
12604         if [ x$flags != "x0x1" ]; then
12605                 error "flag $flags is not 0x1"
12606         fi
12607         echo "unlink a file having nlink = 1," \
12608                 "changelog record has flags of $flags"
12609
12610         # unlink a file having nlink > 1 (changelog flag 0x0)
12611         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12612         rm -f $DIR/$tdir/foobar_161c
12613         changelog_dump | grep UNLNK | tail -n 5
12614         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12615         changelog_clear 0 || error "changelog_clear failed"
12616         if [ x$flags != "x0x0" ]; then
12617                 error "flag $flags is not 0x0"
12618         fi
12619         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
12620 }
12621 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12622
12623 test_161d() {
12624         remote_mds_nodsh && skip "remote MDS with nodsh"
12625
12626         local pid
12627         local fid
12628
12629         changelog_register || error "changelog_register failed"
12630
12631         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12632         # interfer with $MOUNT/.lustre/fid/ access
12633         mkdir $DIR/$tdir
12634         [[ $? -eq 0 ]] || error "mkdir failed"
12635
12636         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12637         $LCTL set_param fail_loc=0x8000140c
12638         # 5s pause
12639         $LCTL set_param fail_val=5
12640
12641         # create file
12642         echo foofoo > $DIR/$tdir/$tfile &
12643         pid=$!
12644
12645         # wait for create to be delayed
12646         sleep 2
12647
12648         ps -p $pid
12649         [[ $? -eq 0 ]] || error "create should be blocked"
12650
12651         local tempfile=$(mktemp)
12652         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
12653         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12654         # some delay may occur during ChangeLog publishing and file read just
12655         # above, that could allow file write to happen finally
12656         [[ -s $tempfile ]] && echo "file should be empty"
12657
12658         $LCTL set_param fail_loc=0
12659
12660         wait $pid
12661         [[ $? -eq 0 ]] || error "create failed"
12662 }
12663 run_test 161d "create with concurrent .lustre/fid access"
12664
12665 check_path() {
12666         local expected="$1"
12667         shift
12668         local fid="$2"
12669
12670         local path
12671         path=$($LFS fid2path "$@")
12672         local rc=$?
12673
12674         if [ $rc -ne 0 ]; then
12675                 error "path looked up of '$expected' failed: rc=$rc"
12676         elif [ "$path" != "$expected" ]; then
12677                 error "path looked up '$path' instead of '$expected'"
12678         else
12679                 echo "FID '$fid' resolves to path '$path' as expected"
12680         fi
12681 }
12682
12683 test_162a() { # was test_162
12684         test_mkdir -p -c1 $DIR/$tdir/d2
12685         touch $DIR/$tdir/d2/$tfile
12686         touch $DIR/$tdir/d2/x1
12687         touch $DIR/$tdir/d2/x2
12688         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
12689         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
12690         # regular file
12691         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
12692         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
12693
12694         # softlink
12695         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
12696         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
12697         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
12698
12699         # softlink to wrong file
12700         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
12701         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
12702         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
12703
12704         # hardlink
12705         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
12706         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
12707         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
12708         # fid2path dir/fsname should both work
12709         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
12710         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
12711
12712         # hardlink count: check that there are 2 links
12713         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
12714         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
12715
12716         # hardlink indexing: remove the first link
12717         rm $DIR/$tdir/d2/p/q/r/hlink
12718         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
12719 }
12720 run_test 162a "path lookup sanity"
12721
12722 test_162b() {
12723         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12724         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12725
12726         mkdir $DIR/$tdir
12727         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
12728                                 error "create striped dir failed"
12729
12730         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
12731                                         tail -n 1 | awk '{print $2}')
12732         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
12733
12734         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
12735         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
12736
12737         # regular file
12738         for ((i=0;i<5;i++)); do
12739                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
12740                         error "get fid for f$i failed"
12741                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
12742
12743                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
12744                         error "get fid for d$i failed"
12745                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
12746         done
12747
12748         return 0
12749 }
12750 run_test 162b "striped directory path lookup sanity"
12751
12752 # LU-4239: Verify fid2path works with paths 100 or more directories deep
12753 test_162c() {
12754         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
12755                 skip "Need MDS version at least 2.7.51"
12756
12757         local lpath=$tdir.local
12758         local rpath=$tdir.remote
12759
12760         test_mkdir $DIR/$lpath
12761         test_mkdir $DIR/$rpath
12762
12763         for ((i = 0; i <= 101; i++)); do
12764                 lpath="$lpath/$i"
12765                 mkdir $DIR/$lpath
12766                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
12767                         error "get fid for local directory $DIR/$lpath failed"
12768                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
12769
12770                 rpath="$rpath/$i"
12771                 test_mkdir $DIR/$rpath
12772                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
12773                         error "get fid for remote directory $DIR/$rpath failed"
12774                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
12775         done
12776
12777         return 0
12778 }
12779 run_test 162c "fid2path works with paths 100 or more directories deep"
12780
12781 test_169() {
12782         # do directio so as not to populate the page cache
12783         log "creating a 10 Mb file"
12784         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12785         log "starting reads"
12786         dd if=$DIR/$tfile of=/dev/null bs=4096 &
12787         log "truncating the file"
12788         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12789         log "killing dd"
12790         kill %+ || true # reads might have finished
12791         echo "wait until dd is finished"
12792         wait
12793         log "removing the temporary file"
12794         rm -rf $DIR/$tfile || error "tmp file removal failed"
12795 }
12796 run_test 169 "parallel read and truncate should not deadlock"
12797
12798 test_170() {
12799         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12800
12801         $LCTL clear     # bug 18514
12802         $LCTL debug_daemon start $TMP/${tfile}_log_good
12803         touch $DIR/$tfile
12804         $LCTL debug_daemon stop
12805         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
12806                 error "sed failed to read log_good"
12807
12808         $LCTL debug_daemon start $TMP/${tfile}_log_good
12809         rm -rf $DIR/$tfile
12810         $LCTL debug_daemon stop
12811
12812         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
12813                error "lctl df log_bad failed"
12814
12815         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12816         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12817
12818         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
12819         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
12820
12821         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
12822                 error "bad_line good_line1 good_line2 are empty"
12823
12824         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12825         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
12826         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12827
12828         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
12829         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12830         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12831
12832         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
12833                 error "bad_line_new good_line_new are empty"
12834
12835         local expected_good=$((good_line1 + good_line2*2))
12836
12837         rm -f $TMP/${tfile}*
12838         # LU-231, short malformed line may not be counted into bad lines
12839         if [ $bad_line -ne $bad_line_new ] &&
12840                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
12841                 error "expected $bad_line bad lines, but got $bad_line_new"
12842                 return 1
12843         fi
12844
12845         if [ $expected_good -ne $good_line_new ]; then
12846                 error "expected $expected_good good lines, but got $good_line_new"
12847                 return 2
12848         fi
12849         true
12850 }
12851 run_test 170 "test lctl df to handle corrupted log ====================="
12852
12853 test_171() { # bug20592
12854         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12855
12856         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
12857         $LCTL set_param fail_loc=0x50e
12858         $LCTL set_param fail_val=3000
12859         multiop_bg_pause $DIR/$tfile O_s || true
12860         local MULTIPID=$!
12861         kill -USR1 $MULTIPID
12862         # cause log dump
12863         sleep 3
12864         wait $MULTIPID
12865         if dmesg | grep "recursive fault"; then
12866                 error "caught a recursive fault"
12867         fi
12868         $LCTL set_param fail_loc=0
12869         true
12870 }
12871 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
12872
12873 # it would be good to share it with obdfilter-survey/iokit-libecho code
12874 setup_obdecho_osc () {
12875         local rc=0
12876         local ost_nid=$1
12877         local obdfilter_name=$2
12878         echo "Creating new osc for $obdfilter_name on $ost_nid"
12879         # make sure we can find loopback nid
12880         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
12881
12882         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
12883                            ${obdfilter_name}_osc_UUID || rc=2; }
12884         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
12885                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
12886         return $rc
12887 }
12888
12889 cleanup_obdecho_osc () {
12890         local obdfilter_name=$1
12891         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
12892         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
12893         return 0
12894 }
12895
12896 obdecho_test() {
12897         local OBD=$1
12898         local node=$2
12899         local pages=${3:-64}
12900         local rc=0
12901         local id
12902
12903         local count=10
12904         local obd_size=$(get_obd_size $node $OBD)
12905         local page_size=$(get_page_size $node)
12906         if [[ -n "$obd_size" ]]; then
12907                 local new_count=$((obd_size / (pages * page_size / 1024)))
12908                 [[ $new_count -ge $count ]] || count=$new_count
12909         fi
12910
12911         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
12912         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
12913                            rc=2; }
12914         if [ $rc -eq 0 ]; then
12915             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
12916             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
12917         fi
12918         echo "New object id is $id"
12919         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
12920                            rc=4; }
12921         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
12922                            "test_brw $count w v $pages $id" || rc=4; }
12923         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
12924                            rc=4; }
12925         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
12926                                         "cleanup" || rc=5; }
12927         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
12928                                         "detach" || rc=6; }
12929         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
12930         return $rc
12931 }
12932
12933 test_180a() {
12934         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12935
12936         if ! module_loaded obdecho; then
12937                 load_module obdecho/obdecho &&
12938                         stack_trap "rmmod obdecho" EXIT ||
12939                         error "unable to load obdecho on client"
12940         fi
12941
12942         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
12943         local host=$($LCTL get_param -n osc.$osc.import |
12944                      awk '/current_connection:/ { print $2 }' )
12945         local target=$($LCTL get_param -n osc.$osc.import |
12946                        awk '/target:/ { print $2 }' )
12947         target=${target%_UUID}
12948
12949         if [ -n "$target" ]; then
12950                 setup_obdecho_osc $host $target &&
12951                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
12952                         { error "obdecho setup failed with $?"; return; }
12953
12954                 obdecho_test ${target}_osc client ||
12955                         error "obdecho_test failed on ${target}_osc"
12956         else
12957                 $LCTL get_param osc.$osc.import
12958                 error "there is no osc.$osc.import target"
12959         fi
12960 }
12961 run_test 180a "test obdecho on osc"
12962
12963 test_180b() {
12964         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12965         remote_ost_nodsh && skip "remote OST with nodsh"
12966
12967         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12968                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
12969                 error "failed to load module obdecho"
12970
12971         local target=$(do_facet ost1 $LCTL dl |
12972                        awk '/obdfilter/ { print $4; exit; }')
12973
12974         if [ -n "$target" ]; then
12975                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
12976         else
12977                 do_facet ost1 $LCTL dl
12978                 error "there is no obdfilter target on ost1"
12979         fi
12980 }
12981 run_test 180b "test obdecho directly on obdfilter"
12982
12983 test_180c() { # LU-2598
12984         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12985         remote_ost_nodsh && skip "remote OST with nodsh"
12986         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
12987                 skip "Need MDS version at least 2.4.0"
12988
12989         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12990                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
12991                 error "failed to load module obdecho"
12992
12993         local target=$(do_facet ost1 $LCTL dl |
12994                        awk '/obdfilter/ { print $4; exit; }')
12995
12996         if [ -n "$target" ]; then
12997                 local pages=16384 # 64MB bulk I/O RPC size
12998
12999                 obdecho_test "$target" ost1 "$pages" ||
13000                         error "obdecho_test with pages=$pages failed with $?"
13001         else
13002                 do_facet ost1 $LCTL dl
13003                 error "there is no obdfilter target on ost1"
13004         fi
13005 }
13006 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13007
13008 test_181() { # bug 22177
13009         test_mkdir $DIR/$tdir
13010         # create enough files to index the directory
13011         createmany -o $DIR/$tdir/foobar 4000
13012         # print attributes for debug purpose
13013         lsattr -d .
13014         # open dir
13015         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13016         MULTIPID=$!
13017         # remove the files & current working dir
13018         unlinkmany $DIR/$tdir/foobar 4000
13019         rmdir $DIR/$tdir
13020         kill -USR1 $MULTIPID
13021         wait $MULTIPID
13022         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13023         return 0
13024 }
13025 run_test 181 "Test open-unlinked dir ========================"
13026
13027 test_182() {
13028         local fcount=1000
13029         local tcount=10
13030
13031         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13032
13033         $LCTL set_param mdc.*.rpc_stats=clear
13034
13035         for (( i = 0; i < $tcount; i++ )) ; do
13036                 mkdir $DIR/$tdir/$i
13037         done
13038
13039         for (( i = 0; i < $tcount; i++ )) ; do
13040                 createmany -o $DIR/$tdir/$i/f- $fcount &
13041         done
13042         wait
13043
13044         for (( i = 0; i < $tcount; i++ )) ; do
13045                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13046         done
13047         wait
13048
13049         $LCTL get_param mdc.*.rpc_stats
13050
13051         rm -rf $DIR/$tdir
13052 }
13053 run_test 182 "Test parallel modify metadata operations ================"
13054
13055 test_183() { # LU-2275
13056         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13057         remote_mds_nodsh && skip "remote MDS with nodsh"
13058         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
13059                 skip "Need MDS version at least 2.3.56"
13060
13061         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13062         echo aaa > $DIR/$tdir/$tfile
13063
13064 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13065         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13066
13067         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13068         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13069
13070         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13071
13072         # Flush negative dentry cache
13073         touch $DIR/$tdir/$tfile
13074
13075         # We are not checking for any leaked references here, they'll
13076         # become evident next time we do cleanup with module unload.
13077         rm -rf $DIR/$tdir
13078 }
13079 run_test 183 "No crash or request leak in case of strange dispositions ========"
13080
13081 # test suite 184 is for LU-2016, LU-2017
13082 test_184a() {
13083         check_swap_layouts_support
13084
13085         dir0=$DIR/$tdir/$testnum
13086         test_mkdir -p -c1 $dir0
13087         ref1=/etc/passwd
13088         ref2=/etc/group
13089         file1=$dir0/f1
13090         file2=$dir0/f2
13091         $SETSTRIPE -c1 $file1
13092         cp $ref1 $file1
13093         $SETSTRIPE -c2 $file2
13094         cp $ref2 $file2
13095         gen1=$($GETSTRIPE -g $file1)
13096         gen2=$($GETSTRIPE -g $file2)
13097
13098         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13099         gen=$($GETSTRIPE -g $file1)
13100         [[ $gen1 != $gen ]] ||
13101                 "Layout generation on $file1 does not change"
13102         gen=$($GETSTRIPE -g $file2)
13103         [[ $gen2 != $gen ]] ||
13104                 "Layout generation on $file2 does not change"
13105
13106         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13107         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13108
13109         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13110 }
13111 run_test 184a "Basic layout swap"
13112
13113 test_184b() {
13114         check_swap_layouts_support
13115
13116         dir0=$DIR/$tdir/$testnum
13117         mkdir -p $dir0 || error "creating dir $dir0"
13118         file1=$dir0/f1
13119         file2=$dir0/f2
13120         file3=$dir0/f3
13121         dir1=$dir0/d1
13122         dir2=$dir0/d2
13123         mkdir $dir1 $dir2
13124         $SETSTRIPE -c1 $file1
13125         $SETSTRIPE -c2 $file2
13126         $SETSTRIPE -c1 $file3
13127         chown $RUNAS_ID $file3
13128         gen1=$($GETSTRIPE -g $file1)
13129         gen2=$($GETSTRIPE -g $file2)
13130
13131         $LFS swap_layouts $dir1 $dir2 &&
13132                 error "swap of directories layouts should fail"
13133         $LFS swap_layouts $dir1 $file1 &&
13134                 error "swap of directory and file layouts should fail"
13135         $RUNAS $LFS swap_layouts $file1 $file2 &&
13136                 error "swap of file we cannot write should fail"
13137         $LFS swap_layouts $file1 $file3 &&
13138                 error "swap of file with different owner should fail"
13139         /bin/true # to clear error code
13140 }
13141 run_test 184b "Forbidden layout swap (will generate errors)"
13142
13143 test_184c() {
13144         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13145         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13146         check_swap_layouts_support
13147
13148         local dir0=$DIR/$tdir/$testnum
13149         mkdir -p $dir0 || error "creating dir $dir0"
13150
13151         local ref1=$dir0/ref1
13152         local ref2=$dir0/ref2
13153         local file1=$dir0/file1
13154         local file2=$dir0/file2
13155         # create a file large enough for the concurrent test
13156         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13157         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13158         echo "ref file size: ref1($(stat -c %s $ref1))," \
13159              "ref2($(stat -c %s $ref2))"
13160
13161         cp $ref2 $file2
13162         dd if=$ref1 of=$file1 bs=16k &
13163         local DD_PID=$!
13164
13165         # Make sure dd starts to copy file
13166         while [ ! -f $file1 ]; do sleep 0.1; done
13167
13168         $LFS swap_layouts $file1 $file2
13169         local rc=$?
13170         wait $DD_PID
13171         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13172         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13173
13174         # how many bytes copied before swapping layout
13175         local copied=$(stat -c %s $file2)
13176         local remaining=$(stat -c %s $ref1)
13177         remaining=$((remaining - copied))
13178         echo "Copied $copied bytes before swapping layout..."
13179
13180         cmp -n $copied $file1 $ref2 | grep differ &&
13181                 error "Content mismatch [0, $copied) of ref2 and file1"
13182         cmp -n $copied $file2 $ref1 ||
13183                 error "Content mismatch [0, $copied) of ref1 and file2"
13184         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13185                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13186
13187         # clean up
13188         rm -f $ref1 $ref2 $file1 $file2
13189 }
13190 run_test 184c "Concurrent write and layout swap"
13191
13192 test_184d() {
13193         check_swap_layouts_support
13194         [ -z "$(which getfattr 2>/dev/null)" ] &&
13195                 skip_env "no getfattr command"
13196
13197         local file1=$DIR/$tdir/$tfile-1
13198         local file2=$DIR/$tdir/$tfile-2
13199         local file3=$DIR/$tdir/$tfile-3
13200         local lovea1
13201         local lovea2
13202
13203         mkdir -p $DIR/$tdir
13204         touch $file1 || error "create $file1 failed"
13205         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13206                 error "create $file2 failed"
13207         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13208                 error "create $file3 failed"
13209         lovea1=$(get_layout_param $file1)
13210
13211         $LFS swap_layouts $file2 $file3 ||
13212                 error "swap $file2 $file3 layouts failed"
13213         $LFS swap_layouts $file1 $file2 ||
13214                 error "swap $file1 $file2 layouts failed"
13215
13216         lovea2=$(get_layout_param $file2)
13217         echo "$lovea1"
13218         echo "$lovea2"
13219         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13220
13221         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13222         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13223 }
13224 run_test 184d "allow stripeless layouts swap"
13225
13226 test_184e() {
13227         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
13228                 skip "Need MDS version at least 2.6.94"
13229         check_swap_layouts_support
13230         [ -z "$(which getfattr 2>/dev/null)" ] &&
13231                 skip_env "no getfattr command"
13232
13233         local file1=$DIR/$tdir/$tfile-1
13234         local file2=$DIR/$tdir/$tfile-2
13235         local file3=$DIR/$tdir/$tfile-3
13236         local lovea
13237
13238         mkdir -p $DIR/$tdir
13239         touch $file1 || error "create $file1 failed"
13240         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13241                 error "create $file2 failed"
13242         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13243                 error "create $file3 failed"
13244
13245         $LFS swap_layouts $file1 $file2 ||
13246                 error "swap $file1 $file2 layouts failed"
13247
13248         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13249         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13250
13251         echo 123 > $file1 || error "Should be able to write into $file1"
13252
13253         $LFS swap_layouts $file1 $file3 ||
13254                 error "swap $file1 $file3 layouts failed"
13255
13256         echo 123 > $file1 || error "Should be able to write into $file1"
13257
13258         rm -rf $file1 $file2 $file3
13259 }
13260 run_test 184e "Recreate layout after stripeless layout swaps"
13261
13262 test_185() { # LU-2441
13263         # LU-3553 - no volatile file support in old servers
13264         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13265                 skip "Need MDS version at least 2.3.60"
13266
13267         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13268         touch $DIR/$tdir/spoo
13269         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13270         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13271                 error "cannot create/write a volatile file"
13272         [ "$FILESET" == "" ] &&
13273         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13274                 error "FID is still valid after close"
13275
13276         multiop_bg_pause $DIR/$tdir vVw4096_c
13277         local multi_pid=$!
13278
13279         local OLD_IFS=$IFS
13280         IFS=":"
13281         local fidv=($fid)
13282         IFS=$OLD_IFS
13283         # assume that the next FID for this client is sequential, since stdout
13284         # is unfortunately eaten by multiop_bg_pause
13285         local n=$((${fidv[1]} + 1))
13286         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13287         if [ "$FILESET" == "" ]; then
13288                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13289                         error "FID is missing before close"
13290         fi
13291         kill -USR1 $multi_pid
13292         # 1 second delay, so if mtime change we will see it
13293         sleep 1
13294         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13295         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13296 }
13297 run_test 185 "Volatile file support"
13298
13299 test_187a() {
13300         remote_mds_nodsh && skip "remote MDS with nodsh"
13301         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13302                 skip "Need MDS version at least 2.3.0"
13303
13304         local dir0=$DIR/$tdir/$testnum
13305         mkdir -p $dir0 || error "creating dir $dir0"
13306
13307         local file=$dir0/file1
13308         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13309         local dv1=$($LFS data_version $file)
13310         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13311         local dv2=$($LFS data_version $file)
13312         [[ $dv1 != $dv2 ]] ||
13313                 error "data version did not change on write $dv1 == $dv2"
13314
13315         # clean up
13316         rm -f $file1
13317 }
13318 run_test 187a "Test data version change"
13319
13320 test_187b() {
13321         remote_mds_nodsh && skip "remote MDS with nodsh"
13322         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13323                 skip "Need MDS version at least 2.3.0"
13324
13325         local dir0=$DIR/$tdir/$testnum
13326         mkdir -p $dir0 || error "creating dir $dir0"
13327
13328         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13329         [[ ${DV[0]} != ${DV[1]} ]] ||
13330                 error "data version did not change on write"\
13331                       " ${DV[0]} == ${DV[1]}"
13332
13333         # clean up
13334         rm -f $file1
13335 }
13336 run_test 187b "Test data version change on volatile file"
13337
13338 test_200() {
13339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13340         remote_mgs_nodsh && skip "remote MGS with nodsh"
13341         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13342
13343         local POOL=${POOL:-cea1}
13344         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13345         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13346         # Pool OST targets
13347         local first_ost=0
13348         local last_ost=$(($OSTCOUNT - 1))
13349         local ost_step=2
13350         local ost_list=$(seq $first_ost $ost_step $last_ost)
13351         local ost_range="$first_ost $last_ost $ost_step"
13352         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13353         local file_dir=$POOL_ROOT/file_tst
13354         local subdir=$test_path/subdir
13355         local rc=0
13356
13357         if ! combined_mgs_mds ; then
13358                 mount_mgs_client
13359         fi
13360
13361         while : ; do
13362                 # former test_200a test_200b
13363                 pool_add $POOL                          || { rc=$? ; break; }
13364                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13365                 # former test_200c test_200d
13366                 mkdir -p $test_path
13367                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13368                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13369                 mkdir -p $subdir
13370                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13371                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13372                                                         || { rc=$? ; break; }
13373                 # former test_200e test_200f
13374                 local files=$((OSTCOUNT*3))
13375                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13376                                                         || { rc=$? ; break; }
13377                 pool_create_files $POOL $file_dir $files "$ost_list" \
13378                                                         || { rc=$? ; break; }
13379                 # former test_200g test_200h
13380                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13381                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13382
13383                 # former test_201a test_201b test_201c
13384                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13385
13386                 local f=$test_path/$tfile
13387                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13388                 pool_remove $POOL $f                    || { rc=$? ; break; }
13389                 break
13390         done
13391
13392         destroy_test_pools
13393
13394         if ! combined_mgs_mds ; then
13395                 umount_mgs_client
13396         fi
13397         return $rc
13398 }
13399 run_test 200 "OST pools"
13400
13401 # usage: default_attr <count | size | offset>
13402 default_attr() {
13403         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13404 }
13405
13406 # usage: check_default_stripe_attr
13407 check_default_stripe_attr() {
13408         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13409         case $1 in
13410         --stripe-count|-c)
13411                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13412         --stripe-size|-S)
13413                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13414         --stripe-index|-i)
13415                 EXPECTED=-1;;
13416         *)
13417                 error "unknown getstripe attr '$1'"
13418         esac
13419
13420         [ $ACTUAL == $EXPECTED ] ||
13421                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13422 }
13423
13424 test_204a() {
13425         test_mkdir $DIR/$tdir
13426         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13427
13428         check_default_stripe_attr --stripe-count
13429         check_default_stripe_attr --stripe-size
13430         check_default_stripe_attr --stripe-index
13431 }
13432 run_test 204a "Print default stripe attributes"
13433
13434 test_204b() {
13435         test_mkdir $DIR/$tdir
13436         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13437
13438         check_default_stripe_attr --stripe-size
13439         check_default_stripe_attr --stripe-index
13440 }
13441 run_test 204b "Print default stripe size and offset"
13442
13443 test_204c() {
13444         test_mkdir $DIR/$tdir
13445         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13446
13447         check_default_stripe_attr --stripe-count
13448         check_default_stripe_attr --stripe-index
13449 }
13450 run_test 204c "Print default stripe count and offset"
13451
13452 test_204d() {
13453         test_mkdir $DIR/$tdir
13454         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13455
13456         check_default_stripe_attr --stripe-count
13457         check_default_stripe_attr --stripe-size
13458 }
13459 run_test 204d "Print default stripe count and size"
13460
13461 test_204e() {
13462         test_mkdir $DIR/$tdir
13463         $SETSTRIPE -d $DIR/$tdir
13464
13465         check_default_stripe_attr --stripe-count --raw
13466         check_default_stripe_attr --stripe-size --raw
13467         check_default_stripe_attr --stripe-index --raw
13468 }
13469 run_test 204e "Print raw stripe attributes"
13470
13471 test_204f() {
13472         test_mkdir $DIR/$tdir
13473         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13474
13475         check_default_stripe_attr --stripe-size --raw
13476         check_default_stripe_attr --stripe-index --raw
13477 }
13478 run_test 204f "Print raw stripe size and offset"
13479
13480 test_204g() {
13481         test_mkdir $DIR/$tdir
13482         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13483
13484         check_default_stripe_attr --stripe-count --raw
13485         check_default_stripe_attr --stripe-index --raw
13486 }
13487 run_test 204g "Print raw stripe count and offset"
13488
13489 test_204h() {
13490         test_mkdir $DIR/$tdir
13491         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13492
13493         check_default_stripe_attr --stripe-count --raw
13494         check_default_stripe_attr --stripe-size --raw
13495 }
13496 run_test 204h "Print raw stripe count and size"
13497
13498 # Figure out which job scheduler is being used, if any,
13499 # or use a fake one
13500 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13501         JOBENV=SLURM_JOB_ID
13502 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13503         JOBENV=LSB_JOBID
13504 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13505         JOBENV=PBS_JOBID
13506 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13507         JOBENV=LOADL_STEP_ID
13508 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13509         JOBENV=JOB_ID
13510 else
13511         $LCTL list_param jobid_name > /dev/null 2>&1
13512         if [ $? -eq 0 ]; then
13513                 JOBENV=nodelocal
13514         else
13515                 JOBENV=FAKE_JOBID
13516         fi
13517 fi
13518 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13519
13520 verify_jobstats() {
13521         local cmd=($1)
13522         shift
13523         local facets="$@"
13524
13525 # we don't really need to clear the stats for this test to work, since each
13526 # command has a unique jobid, but it makes debugging easier if needed.
13527 #       for facet in $facets; do
13528 #               local dev=$(convert_facet2label $facet)
13529 #               # clear old jobstats
13530 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13531 #       done
13532
13533         # use a new JobID for each test, or we might see an old one
13534         [ "$JOBENV" = "FAKE_JOBID" ] &&
13535                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13536
13537         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13538
13539         [ "$JOBENV" = "nodelocal" ] && {
13540                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13541                 $LCTL set_param jobid_name=$FAKE_JOBID
13542                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
13543         }
13544
13545         log "Test: ${cmd[*]}"
13546         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
13547
13548         if [ $JOBENV = "FAKE_JOBID" ]; then
13549                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13550         else
13551                 ${cmd[*]}
13552         fi
13553
13554         # all files are created on OST0000
13555         for facet in $facets; do
13556                 local stats="*.$(convert_facet2label $facet).job_stats"
13557
13558                 # strip out libtool wrappers for in-tree executables
13559                 if [ $(do_facet $facet lctl get_param $stats |
13560                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
13561                         do_facet $facet lctl get_param $stats
13562                         error "No jobstats for $JOBVAL found on $facet::$stats"
13563                 fi
13564         done
13565 }
13566
13567 jobstats_set() {
13568         local new_jobenv=$1
13569
13570         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$new_jobenv
13571         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $new_jobenv
13572 }
13573
13574 test_205() { # Job stats
13575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13576         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13577                 skip "Need MDS version with at least 2.7.1"
13578         remote_mgs_nodsh && skip "remote MGS with nodsh"
13579         remote_mds_nodsh && skip "remote MDS with nodsh"
13580         remote_ost_nodsh && skip "remote OST with nodsh"
13581         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13582                 skip "Server doesn't support jobstats"
13583         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
13584
13585         local old_jobenv=$($LCTL get_param -n jobid_var)
13586         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
13587         stack_trap "do_facet mgs \
13588                 $LCTL conf_param $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13589
13590         changelog_register
13591
13592         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13593                                 mdt.*.job_cleanup_interval | head -n 1)
13594         local new_interval=5
13595         do_facet $SINGLEMDS \
13596                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
13597         stack_trap "do_facet $SINGLEMDS \
13598                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
13599         local start=$SECONDS
13600
13601         local cmd
13602         # mkdir
13603         cmd="mkdir $DIR/$tdir"
13604         verify_jobstats "$cmd" "$SINGLEMDS"
13605         # rmdir
13606         cmd="rmdir $DIR/$tdir"
13607         verify_jobstats "$cmd" "$SINGLEMDS"
13608         # mkdir on secondary MDT
13609         if [ $MDSCOUNT -gt 1 ]; then
13610                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13611                 verify_jobstats "$cmd" "mds2"
13612         fi
13613         # mknod
13614         cmd="mknod $DIR/$tfile c 1 3"
13615         verify_jobstats "$cmd" "$SINGLEMDS"
13616         # unlink
13617         cmd="rm -f $DIR/$tfile"
13618         verify_jobstats "$cmd" "$SINGLEMDS"
13619         # create all files on OST0000 so verify_jobstats can find OST stats
13620         # open & close
13621         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
13622         verify_jobstats "$cmd" "$SINGLEMDS"
13623         # setattr
13624         cmd="touch $DIR/$tfile"
13625         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13626         # write
13627         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13628         verify_jobstats "$cmd" "ost1"
13629         # read
13630         cancel_lru_locks osc
13631         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13632         verify_jobstats "$cmd" "ost1"
13633         # truncate
13634         cmd="$TRUNCATE $DIR/$tfile 0"
13635         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13636         # rename
13637         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13638         verify_jobstats "$cmd" "$SINGLEMDS"
13639         # jobstats expiry - sleep until old stats should be expired
13640         local left=$((new_interval + 5 - (SECONDS - start)))
13641         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13642                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
13643                         "0" $left
13644         cmd="mkdir $DIR/$tdir.expire"
13645         verify_jobstats "$cmd" "$SINGLEMDS"
13646         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
13647             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
13648
13649         # Ensure that jobid are present in changelog (if supported by MDS)
13650         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
13651                 changelog_dump | tail -10
13652                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
13653                 [ $jobids -eq 9 ] ||
13654                         error "Wrong changelog jobid count $jobids != 9"
13655
13656                 # LU-5862
13657                 JOBENV="disable"
13658                 jobstats_set $JOBENV
13659                 touch $DIR/$tfile
13660                 changelog_dump | grep $tfile
13661                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
13662                 [ $jobids -eq 0 ] ||
13663                         error "Unexpected jobids when jobid_var=$JOBENV"
13664         fi
13665
13666         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
13667         JOBENV="JOBCOMPLEX"
13668         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
13669
13670         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
13671 }
13672 run_test 205 "Verify job stats"
13673
13674 # LU-1480, LU-1773 and LU-1657
13675 test_206() {
13676         mkdir -p $DIR/$tdir
13677         $SETSTRIPE -c -1 $DIR/$tdir
13678 #define OBD_FAIL_LOV_INIT 0x1403
13679         $LCTL set_param fail_loc=0xa0001403
13680         $LCTL set_param fail_val=1
13681         touch $DIR/$tdir/$tfile || true
13682 }
13683 run_test 206 "fail lov_init_raid0() doesn't lbug"
13684
13685 test_207a() {
13686         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13687         local fsz=`stat -c %s $DIR/$tfile`
13688         cancel_lru_locks mdc
13689
13690         # do not return layout in getattr intent
13691 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
13692         $LCTL set_param fail_loc=0x170
13693         local sz=`stat -c %s $DIR/$tfile`
13694
13695         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
13696
13697         rm -rf $DIR/$tfile
13698 }
13699 run_test 207a "can refresh layout at glimpse"
13700
13701 test_207b() {
13702         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13703         local cksum=`md5sum $DIR/$tfile`
13704         local fsz=`stat -c %s $DIR/$tfile`
13705         cancel_lru_locks mdc
13706         cancel_lru_locks osc
13707
13708         # do not return layout in getattr intent
13709 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
13710         $LCTL set_param fail_loc=0x171
13711
13712         # it will refresh layout after the file is opened but before read issues
13713         echo checksum is "$cksum"
13714         echo "$cksum" |md5sum -c --quiet || error "file differs"
13715
13716         rm -rf $DIR/$tfile
13717 }
13718 run_test 207b "can refresh layout at open"
13719
13720 test_208() {
13721         # FIXME: in this test suite, only RD lease is used. This is okay
13722         # for now as only exclusive open is supported. After generic lease
13723         # is done, this test suite should be revised. - Jinshan
13724
13725         remote_mds_nodsh && skip "remote MDS with nodsh"
13726         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
13727                 skip "Need MDS version at least 2.4.52"
13728
13729         echo "==== test 1: verify get lease work"
13730         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
13731
13732         echo "==== test 2: verify lease can be broken by upcoming open"
13733         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13734         local PID=$!
13735         sleep 1
13736
13737         $MULTIOP $DIR/$tfile oO_RDONLY:c
13738         kill -USR1 $PID && wait $PID || error "break lease error"
13739
13740         echo "==== test 3: verify lease can't be granted if an open already exists"
13741         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
13742         local PID=$!
13743         sleep 1
13744
13745         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
13746         kill -USR1 $PID && wait $PID || error "open file error"
13747
13748         echo "==== test 4: lease can sustain over recovery"
13749         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
13750         PID=$!
13751         sleep 1
13752
13753         fail mds1
13754
13755         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
13756
13757         echo "==== test 5: lease broken can't be regained by replay"
13758         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13759         PID=$!
13760         sleep 1
13761
13762         # open file to break lease and then recovery
13763         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
13764         fail mds1
13765
13766         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
13767
13768         rm -f $DIR/$tfile
13769 }
13770 run_test 208 "Exclusive open"
13771
13772 test_209() {
13773         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
13774                 skip_env "must have disp_stripe"
13775
13776         touch $DIR/$tfile
13777         sync; sleep 5; sync;
13778
13779         echo 3 > /proc/sys/vm/drop_caches
13780         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13781
13782         # open/close 500 times
13783         for i in $(seq 500); do
13784                 cat $DIR/$tfile
13785         done
13786
13787         echo 3 > /proc/sys/vm/drop_caches
13788         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13789
13790         echo "before: $req_before, after: $req_after"
13791         [ $((req_after - req_before)) -ge 300 ] &&
13792                 error "open/close requests are not freed"
13793         return 0
13794 }
13795 run_test 209 "read-only open/close requests should be freed promptly"
13796
13797 test_212() {
13798         size=`date +%s`
13799         size=$((size % 8192 + 1))
13800         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
13801         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
13802         rm -f $DIR/f212 $DIR/f212.xyz
13803 }
13804 run_test 212 "Sendfile test ============================================"
13805
13806 test_213() {
13807         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
13808         cancel_lru_locks osc
13809         lctl set_param fail_loc=0x8000040f
13810         # generate a read lock
13811         cat $DIR/$tfile > /dev/null
13812         # write to the file, it will try to cancel the above read lock.
13813         cat /etc/hosts >> $DIR/$tfile
13814 }
13815 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
13816
13817 test_214() { # for bug 20133
13818         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
13819         for (( i=0; i < 340; i++ )) ; do
13820                 touch $DIR/$tdir/d214c/a$i
13821         done
13822
13823         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
13824         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
13825         ls $DIR/d214c || error "ls $DIR/d214c failed"
13826         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
13827         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
13828 }
13829 run_test 214 "hash-indexed directory test - bug 20133"
13830
13831 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
13832 create_lnet_proc_files() {
13833         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
13834 }
13835
13836 # counterpart of create_lnet_proc_files
13837 remove_lnet_proc_files() {
13838         rm -f $TMP/lnet_$1.sys
13839 }
13840
13841 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13842 # 3rd arg as regexp for body
13843 check_lnet_proc_stats() {
13844         local l=$(cat "$TMP/lnet_$1" |wc -l)
13845         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
13846
13847         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
13848 }
13849
13850 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13851 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
13852 # optional and can be regexp for 2nd line (lnet.routes case)
13853 check_lnet_proc_entry() {
13854         local blp=2          # blp stands for 'position of 1st line of body'
13855         [ -z "$5" ] || blp=3 # lnet.routes case
13856
13857         local l=$(cat "$TMP/lnet_$1" |wc -l)
13858         # subtracting one from $blp because the body can be empty
13859         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
13860
13861         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
13862                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
13863
13864         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
13865                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
13866
13867         # bail out if any unexpected line happened
13868         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
13869         [ "$?" != 0 ] || error "$2 misformatted"
13870 }
13871
13872 test_215() { # for bugs 18102, 21079, 21517
13873         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13874
13875         local N='(0|[1-9][0-9]*)'       # non-negative numeric
13876         local P='[1-9][0-9]*'           # positive numeric
13877         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
13878         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
13879         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
13880         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
13881
13882         local L1 # regexp for 1st line
13883         local L2 # regexp for 2nd line (optional)
13884         local BR # regexp for the rest (body)
13885
13886         # lnet.stats should look as 11 space-separated non-negative numerics
13887         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
13888         create_lnet_proc_files "stats"
13889         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
13890         remove_lnet_proc_files "stats"
13891
13892         # lnet.routes should look like this:
13893         # Routing disabled/enabled
13894         # net hops priority state router
13895         # where net is a string like tcp0, hops > 0, priority >= 0,
13896         # state is up/down,
13897         # router is a string like 192.168.1.1@tcp2
13898         L1="^Routing (disabled|enabled)$"
13899         L2="^net +hops +priority +state +router$"
13900         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
13901         create_lnet_proc_files "routes"
13902         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
13903         remove_lnet_proc_files "routes"
13904
13905         # lnet.routers should look like this:
13906         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
13907         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
13908         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
13909         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
13910         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
13911         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
13912         create_lnet_proc_files "routers"
13913         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
13914         remove_lnet_proc_files "routers"
13915
13916         # lnet.peers should look like this:
13917         # nid refs state last max rtr min tx min queue
13918         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
13919         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
13920         # numeric (0 or >0 or <0), queue >= 0.
13921         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
13922         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
13923         create_lnet_proc_files "peers"
13924         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
13925         remove_lnet_proc_files "peers"
13926
13927         # lnet.buffers  should look like this:
13928         # pages count credits min
13929         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
13930         L1="^pages +count +credits +min$"
13931         BR="^ +$N +$N +$I +$I$"
13932         create_lnet_proc_files "buffers"
13933         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
13934         remove_lnet_proc_files "buffers"
13935
13936         # lnet.nis should look like this:
13937         # nid status alive refs peer rtr max tx min
13938         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
13939         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
13940         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
13941         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
13942         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
13943         create_lnet_proc_files "nis"
13944         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
13945         remove_lnet_proc_files "nis"
13946
13947         # can we successfully write to lnet.stats?
13948         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
13949 }
13950 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
13951
13952 test_216() { # bug 20317
13953         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13954         remote_ost_nodsh && skip "remote OST with nodsh"
13955
13956         local node
13957         local facets=$(get_facets OST)
13958         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13959
13960         save_lustre_params client "osc.*.contention_seconds" > $p
13961         save_lustre_params $facets \
13962                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
13963         save_lustre_params $facets \
13964                 "ldlm.namespaces.filter-*.contended_locks" >> $p
13965         save_lustre_params $facets \
13966                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
13967         clear_stats osc.*.osc_stats
13968
13969         # agressive lockless i/o settings
13970         do_nodes $(comma_list $(osts_nodes)) \
13971                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
13972                         ldlm.namespaces.filter-*.contended_locks=0 \
13973                         ldlm.namespaces.filter-*.contention_seconds=60"
13974         lctl set_param -n osc.*.contention_seconds=60
13975
13976         $DIRECTIO write $DIR/$tfile 0 10 4096
13977         $CHECKSTAT -s 40960 $DIR/$tfile
13978
13979         # disable lockless i/o
13980         do_nodes $(comma_list $(osts_nodes)) \
13981                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
13982                         ldlm.namespaces.filter-*.contended_locks=32 \
13983                         ldlm.namespaces.filter-*.contention_seconds=0"
13984         lctl set_param -n osc.*.contention_seconds=0
13985         clear_stats osc.*.osc_stats
13986
13987         dd if=/dev/zero of=$DIR/$tfile count=0
13988         $CHECKSTAT -s 0 $DIR/$tfile
13989
13990         restore_lustre_params <$p
13991         rm -f $p
13992         rm $DIR/$tfile
13993 }
13994 run_test 216 "check lockless direct write updates file size and kms correctly"
13995
13996 test_217() { # bug 22430
13997         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13998
13999         local node
14000         local nid
14001
14002         for node in $(nodes_list); do
14003                 nid=$(host_nids_address $node $NETTYPE)
14004                 if [[ $nid = *-* ]] ; then
14005                         echo "lctl ping $(h2nettype $nid)"
14006                         lctl ping $(h2nettype $nid)
14007                 else
14008                         echo "skipping $node (no hyphen detected)"
14009                 fi
14010         done
14011 }
14012 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14013
14014 test_218() {
14015        # do directio so as not to populate the page cache
14016        log "creating a 10 Mb file"
14017        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14018        log "starting reads"
14019        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14020        log "truncating the file"
14021        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14022        log "killing dd"
14023        kill %+ || true # reads might have finished
14024        echo "wait until dd is finished"
14025        wait
14026        log "removing the temporary file"
14027        rm -rf $DIR/$tfile || error "tmp file removal failed"
14028 }
14029 run_test 218 "parallel read and truncate should not deadlock"
14030
14031 test_219() {
14032         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14033
14034         # write one partial page
14035         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14036         # set no grant so vvp_io_commit_write will do sync write
14037         $LCTL set_param fail_loc=0x411
14038         # write a full page at the end of file
14039         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14040
14041         $LCTL set_param fail_loc=0
14042         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14043         $LCTL set_param fail_loc=0x411
14044         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14045
14046         # LU-4201
14047         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14048         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14049 }
14050 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14051
14052 test_220() { #LU-325
14053         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14054         remote_ost_nodsh && skip "remote OST with nodsh"
14055         remote_mds_nodsh && skip "remote MDS with nodsh"
14056         remote_mgs_nodsh && skip "remote MGS with nodsh"
14057
14058         local OSTIDX=0
14059
14060         # create on MDT0000 so the last_id and next_id are correct
14061         mkdir $DIR/$tdir
14062         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14063         OST=${OST%_UUID}
14064
14065         # on the mdt's osc
14066         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14067         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14068                         osc.$mdtosc_proc1.prealloc_last_id)
14069         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14070                         osc.$mdtosc_proc1.prealloc_next_id)
14071
14072         $LFS df -i
14073
14074         if ! combined_mgs_mds ; then
14075                 mount_mgs_client
14076         fi
14077
14078         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14079         #define OBD_FAIL_OST_ENOINO              0x229
14080         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14081         create_pool $FSNAME.$TESTNAME || return 1
14082         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14083
14084         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14085
14086         MDSOBJS=$((last_id - next_id))
14087         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14088
14089         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14090         echo "OST still has $count kbytes free"
14091
14092         echo "create $MDSOBJS files @next_id..."
14093         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14094
14095         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14096                         osc.$mdtosc_proc1.prealloc_last_id)
14097         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14098                         osc.$mdtosc_proc1.prealloc_next_id)
14099
14100         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14101         $LFS df -i
14102
14103         echo "cleanup..."
14104
14105         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14106         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14107
14108         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14109                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14110         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14111                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14112         echo "unlink $MDSOBJS files @$next_id..."
14113         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14114
14115         if ! combined_mgs_mds ; then
14116                 umount_mgs_client
14117         fi
14118 }
14119 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14120
14121 test_221() {
14122         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14123
14124         dd if=`which date` of=$MOUNT/date oflag=sync
14125         chmod +x $MOUNT/date
14126
14127         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14128         $LCTL set_param fail_loc=0x80001401
14129
14130         $MOUNT/date > /dev/null
14131         rm -f $MOUNT/date
14132 }
14133 run_test 221 "make sure fault and truncate race to not cause OOM"
14134
14135 test_222a () {
14136         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14137
14138         rm -rf $DIR/$tdir
14139         test_mkdir $DIR/$tdir
14140         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14141         createmany -o $DIR/$tdir/$tfile 10
14142         cancel_lru_locks mdc
14143         cancel_lru_locks osc
14144         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14145         $LCTL set_param fail_loc=0x31a
14146         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14147         $LCTL set_param fail_loc=0
14148         rm -r $DIR/$tdir
14149 }
14150 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14151
14152 test_222b () {
14153         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14154
14155         rm -rf $DIR/$tdir
14156         test_mkdir $DIR/$tdir
14157         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14158         createmany -o $DIR/$tdir/$tfile 10
14159         cancel_lru_locks mdc
14160         cancel_lru_locks osc
14161         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14162         $LCTL set_param fail_loc=0x31a
14163         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14164         $LCTL set_param fail_loc=0
14165 }
14166 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14167
14168 test_223 () {
14169         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14170
14171         rm -rf $DIR/$tdir
14172         test_mkdir $DIR/$tdir
14173         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14174         createmany -o $DIR/$tdir/$tfile 10
14175         cancel_lru_locks mdc
14176         cancel_lru_locks osc
14177         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14178         $LCTL set_param fail_loc=0x31b
14179         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14180         $LCTL set_param fail_loc=0
14181         rm -r $DIR/$tdir
14182 }
14183 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14184
14185 test_224a() { # LU-1039, MRP-303
14186         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14187
14188         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14189         $LCTL set_param fail_loc=0x508
14190         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14191         $LCTL set_param fail_loc=0
14192         df $DIR
14193 }
14194 run_test 224a "Don't panic on bulk IO failure"
14195
14196 test_224b() { # LU-1039, MRP-303
14197         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14198
14199         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14200         cancel_lru_locks osc
14201         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14202         $LCTL set_param fail_loc=0x515
14203         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14204         $LCTL set_param fail_loc=0
14205         df $DIR
14206 }
14207 run_test 224b "Don't panic on bulk IO failure"
14208
14209 test_224c() { # LU-6441
14210         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14211         remote_mds_nodsh && skip "remote MDS with nodsh"
14212
14213         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14214         save_writethrough $p
14215         set_cache writethrough on
14216
14217         local pages_per_rpc=$($LCTL get_param \
14218                                 osc.*.max_pages_per_rpc)
14219         local at_max=$($LCTL get_param -n at_max)
14220         local timeout=$($LCTL get_param -n timeout)
14221         local test_at="$LCTL get_param -n at_max"
14222         local param_at="$FSNAME.sys.at_max"
14223         local test_timeout="$LCTL get_param -n timeout"
14224         local param_timeout="$FSNAME.sys.timeout"
14225
14226         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14227
14228         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
14229                 error "conf_param at_max=0 failed"
14230         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
14231                 error "conf_param timeout=5 failed"
14232
14233         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14234         do_facet ost1 $LCTL set_param fail_loc=0x520
14235         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14236         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14237         sync
14238         do_facet ost1 $LCTL set_param fail_loc=0
14239
14240         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
14241                 error "conf_param at_max=$at_max failed"
14242         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
14243                 $timeout || error "conf_param timeout=$timeout failed"
14244
14245         $LCTL set_param -n $pages_per_rpc
14246         restore_lustre_params < $p
14247         rm -f $p
14248 }
14249 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14250
14251 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14252 test_225a () {
14253         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14254         if [ -z ${MDSSURVEY} ]; then
14255                 skip_env "mds-survey not found"
14256         fi
14257         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14258                 skip "Need MDS version at least 2.2.51"
14259
14260         local mds=$(facet_host $SINGLEMDS)
14261         local target=$(do_nodes $mds 'lctl dl' |
14262                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14263
14264         local cmd1="file_count=1000 thrhi=4"
14265         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14266         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14267         local cmd="$cmd1 $cmd2 $cmd3"
14268
14269         rm -f ${TMP}/mds_survey*
14270         echo + $cmd
14271         eval $cmd || error "mds-survey with zero-stripe failed"
14272         cat ${TMP}/mds_survey*
14273         rm -f ${TMP}/mds_survey*
14274 }
14275 run_test 225a "Metadata survey sanity with zero-stripe"
14276
14277 test_225b () {
14278         if [ -z ${MDSSURVEY} ]; then
14279                 skip_env "mds-survey not found"
14280         fi
14281         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14282                 skip "Need MDS version at least 2.2.51"
14283         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14284         remote_mds_nodsh && skip "remote MDS with nodsh"
14285         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14286                 skip_env "Need to mount OST to test"
14287         fi
14288
14289         local mds=$(facet_host $SINGLEMDS)
14290         local target=$(do_nodes $mds 'lctl dl' |
14291                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14292
14293         local cmd1="file_count=1000 thrhi=4"
14294         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14295         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14296         local cmd="$cmd1 $cmd2 $cmd3"
14297
14298         rm -f ${TMP}/mds_survey*
14299         echo + $cmd
14300         eval $cmd || error "mds-survey with stripe_count failed"
14301         cat ${TMP}/mds_survey*
14302         rm -f ${TMP}/mds_survey*
14303 }
14304 run_test 225b "Metadata survey sanity with stripe_count = 1"
14305
14306 mcreate_path2fid () {
14307         local mode=$1
14308         local major=$2
14309         local minor=$3
14310         local name=$4
14311         local desc=$5
14312         local path=$DIR/$tdir/$name
14313         local fid
14314         local rc
14315         local fid_path
14316
14317         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14318                 error "cannot create $desc"
14319
14320         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14321         rc=$?
14322         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14323
14324         fid_path=$($LFS fid2path $MOUNT $fid)
14325         rc=$?
14326         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14327
14328         [ "$path" == "$fid_path" ] ||
14329                 error "fid2path returned $fid_path, expected $path"
14330
14331         echo "pass with $path and $fid"
14332 }
14333
14334 test_226a () {
14335         rm -rf $DIR/$tdir
14336         mkdir -p $DIR/$tdir
14337
14338         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14339         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14340         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14341         mcreate_path2fid 0040666 0 0 dir "directory"
14342         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14343         mcreate_path2fid 0100666 0 0 file "regular file"
14344         mcreate_path2fid 0120666 0 0 link "symbolic link"
14345         mcreate_path2fid 0140666 0 0 sock "socket"
14346 }
14347 run_test 226a "call path2fid and fid2path on files of all type"
14348
14349 test_226b () {
14350         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14351
14352         local MDTIDX=1
14353
14354         rm -rf $DIR/$tdir
14355         mkdir -p $DIR/$tdir
14356         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14357                 error "create remote directory failed"
14358         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14359         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14360                                 "character special file (null)"
14361         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14362                                 "character special file (no device)"
14363         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14364         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14365                                 "block special file (loop)"
14366         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14367         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14368         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14369 }
14370 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14371
14372 # LU-1299 Executing or running ldd on a truncated executable does not
14373 # cause an out-of-memory condition.
14374 test_227() {
14375         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14376         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14377
14378         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14379         chmod +x $MOUNT/date
14380
14381         $MOUNT/date > /dev/null
14382         ldd $MOUNT/date > /dev/null
14383         rm -f $MOUNT/date
14384 }
14385 run_test 227 "running truncated executable does not cause OOM"
14386
14387 # LU-1512 try to reuse idle OI blocks
14388 test_228a() {
14389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14390         remote_mds_nodsh && skip "remote MDS with nodsh"
14391         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14392                 skip_env "ldiskfs only test"
14393
14394         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14395         local myDIR=$DIR/$tdir
14396
14397         mkdir -p $myDIR
14398         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14399         $LCTL set_param fail_loc=0x80001002
14400         createmany -o $myDIR/t- 10000
14401         $LCTL set_param fail_loc=0
14402         # The guard is current the largest FID holder
14403         touch $myDIR/guard
14404         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14405                     tr -d '[')
14406         local IDX=$(($SEQ % 64))
14407
14408         do_facet $SINGLEMDS sync
14409         # Make sure journal flushed.
14410         sleep 6
14411         local blk1=$(do_facet $SINGLEMDS \
14412                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14413                      grep Blockcount | awk '{print $4}')
14414
14415         # Remove old files, some OI blocks will become idle.
14416         unlinkmany $myDIR/t- 10000
14417         # Create new files, idle OI blocks should be reused.
14418         createmany -o $myDIR/t- 2000
14419         do_facet $SINGLEMDS sync
14420         # Make sure journal flushed.
14421         sleep 6
14422         local blk2=$(do_facet $SINGLEMDS \
14423                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14424                      grep Blockcount | awk '{print $4}')
14425
14426         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14427 }
14428 run_test 228a "try to reuse idle OI blocks"
14429
14430 test_228b() {
14431         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14432         remote_mds_nodsh && skip "remote MDS with nodsh"
14433         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14434                 skip_env "ldiskfs only test"
14435
14436         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14437         local myDIR=$DIR/$tdir
14438
14439         mkdir -p $myDIR
14440         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14441         $LCTL set_param fail_loc=0x80001002
14442         createmany -o $myDIR/t- 10000
14443         $LCTL set_param fail_loc=0
14444         # The guard is current the largest FID holder
14445         touch $myDIR/guard
14446         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14447                     tr -d '[')
14448         local IDX=$(($SEQ % 64))
14449
14450         do_facet $SINGLEMDS sync
14451         # Make sure journal flushed.
14452         sleep 6
14453         local blk1=$(do_facet $SINGLEMDS \
14454                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14455                      grep Blockcount | awk '{print $4}')
14456
14457         # Remove old files, some OI blocks will become idle.
14458         unlinkmany $myDIR/t- 10000
14459
14460         # stop the MDT
14461         stop $SINGLEMDS || error "Fail to stop MDT."
14462         # remount the MDT
14463         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14464
14465         df $MOUNT || error "Fail to df."
14466         # Create new files, idle OI blocks should be reused.
14467         createmany -o $myDIR/t- 2000
14468         do_facet $SINGLEMDS sync
14469         # Make sure journal flushed.
14470         sleep 6
14471         local blk2=$(do_facet $SINGLEMDS \
14472                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14473                      grep Blockcount | awk '{print $4}')
14474
14475         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14476 }
14477 run_test 228b "idle OI blocks can be reused after MDT restart"
14478
14479 #LU-1881
14480 test_228c() {
14481         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14482         remote_mds_nodsh && skip "remote MDS with nodsh"
14483         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14484                 skip_env "ldiskfs only test"
14485
14486         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14487         local myDIR=$DIR/$tdir
14488
14489         mkdir -p $myDIR
14490         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14491         $LCTL set_param fail_loc=0x80001002
14492         # 20000 files can guarantee there are index nodes in the OI file
14493         createmany -o $myDIR/t- 20000
14494         $LCTL set_param fail_loc=0
14495         # The guard is current the largest FID holder
14496         touch $myDIR/guard
14497         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14498                     tr -d '[')
14499         local IDX=$(($SEQ % 64))
14500
14501         do_facet $SINGLEMDS sync
14502         # Make sure journal flushed.
14503         sleep 6
14504         local blk1=$(do_facet $SINGLEMDS \
14505                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14506                      grep Blockcount | awk '{print $4}')
14507
14508         # Remove old files, some OI blocks will become idle.
14509         unlinkmany $myDIR/t- 20000
14510         rm -f $myDIR/guard
14511         # The OI file should become empty now
14512
14513         # Create new files, idle OI blocks should be reused.
14514         createmany -o $myDIR/t- 2000
14515         do_facet $SINGLEMDS sync
14516         # Make sure journal flushed.
14517         sleep 6
14518         local blk2=$(do_facet $SINGLEMDS \
14519                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14520                      grep Blockcount | awk '{print $4}')
14521
14522         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14523 }
14524 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14525
14526 test_229() { # LU-2482, LU-3448
14527         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14528         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14529         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14530                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14531
14532         rm -f $DIR/$tfile
14533
14534         # Create a file with a released layout and stripe count 2.
14535         $MULTIOP $DIR/$tfile H2c ||
14536                 error "failed to create file with released layout"
14537
14538         $GETSTRIPE -v $DIR/$tfile
14539
14540         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14541         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14542
14543         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14544         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14545         stat $DIR/$tfile || error "failed to stat released file"
14546
14547         chown $RUNAS_ID $DIR/$tfile ||
14548                 error "chown $RUNAS_ID $DIR/$tfile failed"
14549
14550         chgrp $RUNAS_ID $DIR/$tfile ||
14551                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14552
14553         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14554         rm $DIR/$tfile || error "failed to remove released file"
14555 }
14556 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14557
14558 test_230a() {
14559         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14560         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14561
14562         local MDTIDX=1
14563
14564         test_mkdir $DIR/$tdir
14565         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14566         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
14567         [ $mdt_idx -ne 0 ] &&
14568                 error "create local directory on wrong MDT $mdt_idx"
14569
14570         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14571                         error "create remote directory failed"
14572         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
14573         [ $mdt_idx -ne $MDTIDX ] &&
14574                 error "create remote directory on wrong MDT $mdt_idx"
14575
14576         createmany -o $DIR/$tdir/test_230/t- 10 ||
14577                 error "create files on remote directory failed"
14578         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
14579         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14580         rm -r $DIR/$tdir || error "unlink remote directory failed"
14581 }
14582 run_test 230a "Create remote directory and files under the remote directory"
14583
14584 test_230b() {
14585         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14586         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14587
14588         local MDTIDX=1
14589         local mdt_index
14590         local i
14591         local file
14592         local pid
14593         local stripe_count
14594         local migrate_dir=$DIR/$tdir/migrate_dir
14595         local other_dir=$DIR/$tdir/other_dir
14596
14597         test_mkdir $DIR/$tdir
14598         test_mkdir -i0 -c1 $migrate_dir
14599         test_mkdir -i0 -c1 $other_dir
14600         for ((i=0; i<10; i++)); do
14601                 mkdir -p $migrate_dir/dir_${i}
14602                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14603                         error "create files under remote dir failed $i"
14604         done
14605
14606         cp /etc/passwd $migrate_dir/$tfile
14607         cp /etc/passwd $other_dir/$tfile
14608         chattr +SAD $migrate_dir
14609         chattr +SAD $migrate_dir/$tfile
14610
14611         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14612         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14613         local old_dir_mode=$(stat -c%f $migrate_dir)
14614         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14615
14616         mkdir -p $migrate_dir/dir_default_stripe2
14617         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
14618         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
14619
14620         mkdir -p $other_dir
14621         ln $migrate_dir/$tfile $other_dir/luna
14622         ln $migrate_dir/$tfile $migrate_dir/sofia
14623         ln $other_dir/$tfile $migrate_dir/david
14624         ln -s $migrate_dir/$tfile $other_dir/zachary
14625         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14626         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14627
14628         $LFS migrate -m $MDTIDX $migrate_dir ||
14629                 error "fails on migrating remote dir to MDT1"
14630
14631         echo "migratate to MDT1, then checking.."
14632         for ((i = 0; i < 10; i++)); do
14633                 for file in $(find $migrate_dir/dir_${i}); do
14634                         mdt_index=$($LFS getstripe -m $file)
14635                         [ $mdt_index == $MDTIDX ] ||
14636                                 error "$file is not on MDT${MDTIDX}"
14637                 done
14638         done
14639
14640         # the multiple link file should still in MDT0
14641         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
14642         [ $mdt_index == 0 ] ||
14643                 error "$file is not on MDT${MDTIDX}"
14644
14645         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14646         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14647                 error " expect $old_dir_flag get $new_dir_flag"
14648
14649         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14650         [ "$old_file_flag" = "$new_file_flag" ] ||
14651                 error " expect $old_file_flag get $new_file_flag"
14652
14653         local new_dir_mode=$(stat -c%f $migrate_dir)
14654         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14655                 error "expect mode $old_dir_mode get $new_dir_mode"
14656
14657         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14658         [ "$old_file_mode" = "$new_file_mode" ] ||
14659                 error "expect mode $old_file_mode get $new_file_mode"
14660
14661         diff /etc/passwd $migrate_dir/$tfile ||
14662                 error "$tfile different after migration"
14663
14664         diff /etc/passwd $other_dir/luna ||
14665                 error "luna different after migration"
14666
14667         diff /etc/passwd $migrate_dir/sofia ||
14668                 error "sofia different after migration"
14669
14670         diff /etc/passwd $migrate_dir/david ||
14671                 error "david different after migration"
14672
14673         diff /etc/passwd $other_dir/zachary ||
14674                 error "zachary different after migration"
14675
14676         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14677                 error "${tfile}_ln different after migration"
14678
14679         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14680                 error "${tfile}_ln_other different after migration"
14681
14682         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
14683         [ $stripe_count = 2 ] ||
14684                 error "dir strpe_count $d != 2 after migration."
14685
14686         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
14687         [ $stripe_count = 2 ] ||
14688                 error "file strpe_count $d != 2 after migration."
14689
14690         #migrate back to MDT0
14691         MDTIDX=0
14692
14693         $LFS migrate -m $MDTIDX $migrate_dir ||
14694                 error "fails on migrating remote dir to MDT0"
14695
14696         echo "migrate back to MDT0, checking.."
14697         for file in $(find $migrate_dir); do
14698                 mdt_index=$($LFS getstripe -m $file)
14699                 [ $mdt_index == $MDTIDX ] ||
14700                         error "$file is not on MDT${MDTIDX}"
14701         done
14702
14703         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14704         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14705                 error " expect $old_dir_flag get $new_dir_flag"
14706
14707         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14708         [ "$old_file_flag" = "$new_file_flag" ] ||
14709                 error " expect $old_file_flag get $new_file_flag"
14710
14711         local new_dir_mode=$(stat -c%f $migrate_dir)
14712         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14713                 error "expect mode $old_dir_mode get $new_dir_mode"
14714
14715         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14716         [ "$old_file_mode" = "$new_file_mode" ] ||
14717                 error "expect mode $old_file_mode get $new_file_mode"
14718
14719         diff /etc/passwd ${migrate_dir}/$tfile ||
14720                 error "$tfile different after migration"
14721
14722         diff /etc/passwd ${other_dir}/luna ||
14723                 error "luna different after migration"
14724
14725         diff /etc/passwd ${migrate_dir}/sofia ||
14726                 error "sofia different after migration"
14727
14728         diff /etc/passwd ${other_dir}/zachary ||
14729                 error "zachary different after migration"
14730
14731         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14732                 error "${tfile}_ln different after migration"
14733
14734         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14735                 error "${tfile}_ln_other different after migration"
14736
14737         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
14738         [ $stripe_count = 2 ] ||
14739                 error "dir strpe_count $d != 2 after migration."
14740
14741         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
14742         [ $stripe_count = 2 ] ||
14743                 error "file strpe_count $d != 2 after migration."
14744
14745         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14746 }
14747 run_test 230b "migrate directory"
14748
14749 test_230c() {
14750         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14751         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14752         remote_mds_nodsh && skip "remote MDS with nodsh"
14753
14754         local MDTIDX=1
14755         local mdt_index
14756         local file
14757         local migrate_dir=$DIR/$tdir/migrate_dir
14758
14759         #If migrating directory fails in the middle, all entries of
14760         #the directory is still accessiable.
14761         test_mkdir $DIR/$tdir
14762         test_mkdir -i0 -c1 $migrate_dir
14763         stat $migrate_dir
14764         createmany -o $migrate_dir/f 10 ||
14765                 error "create files under ${migrate_dir} failed"
14766
14767         #failed after migrating 5 entries
14768         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
14769         do_facet mds1 lctl set_param fail_loc=0x20001801
14770         do_facet mds1 lctl  set_param fail_val=5
14771         local t=$(ls $migrate_dir | wc -l)
14772         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
14773                 error "migrate should fail after 5 entries"
14774
14775         mkdir $migrate_dir/dir &&
14776                 error "mkdir succeeds under migrating directory"
14777         touch $migrate_dir/file &&
14778                 error "touch file succeeds under migrating directory"
14779
14780         local u=$(ls $migrate_dir | wc -l)
14781         [ "$u" == "$t" ] || error "$u != $t during migration"
14782
14783         for file in $(find $migrate_dir); do
14784                 stat $file || error "stat $file failed"
14785         done
14786
14787         do_facet mds1 lctl set_param fail_loc=0
14788         do_facet mds1 lctl set_param fail_val=0
14789
14790         $LFS migrate -m $MDTIDX $migrate_dir ||
14791                 error "migrate open files should failed with open files"
14792
14793         echo "Finish migration, then checking.."
14794         for file in $(find $migrate_dir); do
14795                 mdt_index=$($LFS getstripe -m $file)
14796                 [ $mdt_index == $MDTIDX ] ||
14797                         error "$file is not on MDT${MDTIDX}"
14798         done
14799
14800         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14801 }
14802 run_test 230c "check directory accessiblity if migration is failed"
14803
14804 test_230d() {
14805         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14806         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14807
14808         local MDTIDX=1
14809         local mdt_index
14810         local migrate_dir=$DIR/$tdir/migrate_dir
14811         local i
14812         local j
14813
14814         test_mkdir $DIR/$tdir
14815         test_mkdir -i0 -c1 $migrate_dir
14816
14817         for ((i=0; i<100; i++)); do
14818                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
14819                 createmany -o $migrate_dir/dir_${i}/f 100 ||
14820                         error "create files under remote dir failed $i"
14821         done
14822
14823         $LFS migrate -m $MDTIDX $migrate_dir ||
14824                 error "migrate remote dir error"
14825
14826         echo "Finish migration, then checking.."
14827         for file in $(find $migrate_dir); do
14828                 mdt_index=$($LFS getstripe -m $file)
14829                 [ $mdt_index == $MDTIDX ] ||
14830                         error "$file is not on MDT${MDTIDX}"
14831         done
14832
14833         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14834 }
14835 run_test 230d "check migrate big directory"
14836
14837 test_230e() {
14838         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14839         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14840
14841         local i
14842         local j
14843         local a_fid
14844         local b_fid
14845
14846         mkdir -p $DIR/$tdir
14847         mkdir $DIR/$tdir/migrate_dir
14848         mkdir $DIR/$tdir/other_dir
14849         touch $DIR/$tdir/migrate_dir/a
14850         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
14851         ls $DIR/$tdir/other_dir
14852
14853         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14854                 error "migrate dir fails"
14855
14856         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
14857         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14858
14859         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
14860         [ $mdt_index == 0 ] || error "a is not on MDT0"
14861
14862         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
14863                 error "migrate dir fails"
14864
14865         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
14866         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
14867
14868         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
14869         [ $mdt_index == 1 ] || error "a is not on MDT1"
14870
14871         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
14872         [ $mdt_index == 1 ] || error "b is not on MDT1"
14873
14874         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14875         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
14876
14877         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
14878
14879         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14880 }
14881 run_test 230e "migrate mulitple local link files"
14882
14883 test_230f() {
14884         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14885         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14886
14887         local a_fid
14888         local ln_fid
14889
14890         mkdir -p $DIR/$tdir
14891         mkdir $DIR/$tdir/migrate_dir
14892         $LFS mkdir -i1 $DIR/$tdir/other_dir
14893         touch $DIR/$tdir/migrate_dir/a
14894         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
14895         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
14896         ls $DIR/$tdir/other_dir
14897
14898         # a should be migrated to MDT1, since no other links on MDT0
14899         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14900                 error "#1 migrate dir fails"
14901         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
14902         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14903         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
14904         [ $mdt_index == 1 ] || error "a is not on MDT1"
14905
14906         # a should stay on MDT1, because it is a mulitple link file
14907         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14908                 error "#2 migrate dir fails"
14909         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
14910         [ $mdt_index == 1 ] || error "a is not on MDT1"
14911
14912         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14913                 error "#3 migrate dir fails"
14914
14915         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14916         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
14917         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
14918
14919         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
14920         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
14921
14922         # a should be migrated to MDT0, since no other links on MDT1
14923         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14924                 error "#4 migrate dir fails"
14925         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
14926         [ $mdt_index == 0 ] || error "a is not on MDT0"
14927
14928         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14929 }
14930 run_test 230f "migrate mulitple remote link files"
14931
14932 test_230g() {
14933         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14934         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14935
14936         mkdir -p $DIR/$tdir/migrate_dir
14937
14938         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
14939                 error "migrating dir to non-exist MDT succeeds"
14940         true
14941 }
14942 run_test 230g "migrate dir to non-exist MDT"
14943
14944 test_230h() {
14945         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14946         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14947         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
14948                 skip "Need MDS version at least 2.7.64"
14949
14950         local mdt_index
14951
14952         mkdir -p $DIR/$tdir/migrate_dir
14953
14954         $LFS migrate -m1 $DIR &&
14955                 error "migrating mountpoint1 should fail"
14956
14957         $LFS migrate -m1 $DIR/$tdir/.. &&
14958                 error "migrating mountpoint2 should fail"
14959
14960         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
14961                 error "migrating $tdir fail"
14962
14963         mdt_index=$($LFS getstripe -m $DIR/$tdir)
14964         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14965
14966         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
14967         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14968
14969 }
14970 run_test 230h "migrate .. and root"
14971
14972 test_230i() {
14973         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14974         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14975
14976         mkdir -p $DIR/$tdir/migrate_dir
14977
14978         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
14979                 error "migration fails with a tailing slash"
14980
14981         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
14982                 error "migration fails with two tailing slashes"
14983 }
14984 run_test 230i "lfs migrate -m tolerates trailing slashes"
14985
14986 test_231a()
14987 {
14988         # For simplicity this test assumes that max_pages_per_rpc
14989         # is the same across all OSCs
14990         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
14991         local bulk_size=$((max_pages * 4096))
14992         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
14993                                        head -n 1)
14994
14995         mkdir -p $DIR/$tdir
14996         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
14997                 error "failed to set stripe with -S ${brw_size}M option"
14998
14999         # clear the OSC stats
15000         $LCTL set_param osc.*.stats=0 &>/dev/null
15001         stop_writeback
15002
15003         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15004         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15005                 oflag=direct &>/dev/null || error "dd failed"
15006
15007         sync; sleep 1; sync # just to be safe
15008         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15009         if [ x$nrpcs != "x1" ]; then
15010                 $LCTL get_param osc.*.stats
15011                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15012         fi
15013
15014         start_writeback
15015         # Drop the OSC cache, otherwise we will read from it
15016         cancel_lru_locks osc
15017
15018         # clear the OSC stats
15019         $LCTL set_param osc.*.stats=0 &>/dev/null
15020
15021         # Client reads $bulk_size.
15022         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15023                 iflag=direct &>/dev/null || error "dd failed"
15024
15025         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15026         if [ x$nrpcs != "x1" ]; then
15027                 $LCTL get_param osc.*.stats
15028                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15029         fi
15030 }
15031 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15032
15033 test_231b() {
15034         mkdir -p $DIR/$tdir
15035         local i
15036         for i in {0..1023}; do
15037                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15038                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15039                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15040         done
15041         sync
15042 }
15043 run_test 231b "must not assert on fully utilized OST request buffer"
15044
15045 test_232a() {
15046         mkdir -p $DIR/$tdir
15047         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15048
15049         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15050         do_facet ost1 $LCTL set_param fail_loc=0x31c
15051
15052         # ignore dd failure
15053         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15054
15055         do_facet ost1 $LCTL set_param fail_loc=0
15056         umount_client $MOUNT || error "umount failed"
15057         mount_client $MOUNT || error "mount failed"
15058         stop ost1 || error "cannot stop ost1"
15059         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15060 }
15061 run_test 232a "failed lock should not block umount"
15062
15063 test_232b() {
15064         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
15065                 skip "Need MDS version at least 2.10.58"
15066
15067         mkdir -p $DIR/$tdir
15068         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15069         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15070         sync
15071         cancel_lru_locks osc
15072
15073         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15074         do_facet ost1 $LCTL set_param fail_loc=0x31c
15075
15076         # ignore failure
15077         $LFS data_version $DIR/$tdir/$tfile || true
15078
15079         do_facet ost1 $LCTL set_param fail_loc=0
15080         umount_client $MOUNT || error "umount failed"
15081         mount_client $MOUNT || error "mount failed"
15082         stop ost1 || error "cannot stop ost1"
15083         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15084 }
15085 run_test 232b "failed data version lock should not block umount"
15086
15087 test_233a() {
15088         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
15089                 skip "Need MDS version at least 2.3.64"
15090         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15091
15092         local fid=$($LFS path2fid $MOUNT)
15093
15094         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15095                 error "cannot access $MOUNT using its FID '$fid'"
15096 }
15097 run_test 233a "checking that OBF of the FS root succeeds"
15098
15099 test_233b() {
15100         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
15101                 skip "Need MDS version at least 2.5.90"
15102         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15103
15104         local fid=$($LFS path2fid $MOUNT/.lustre)
15105
15106         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15107                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15108
15109         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15110         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15111                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15112 }
15113 run_test 233b "checking that OBF of the FS .lustre succeeds"
15114
15115 test_234() {
15116         local p="$TMP/sanityN-$TESTNAME.parameters"
15117         save_lustre_params client "llite.*.xattr_cache" > $p
15118         lctl set_param llite.*.xattr_cache 1 ||
15119                 skip_env "xattr cache is not supported"
15120
15121         mkdir -p $DIR/$tdir || error "mkdir failed"
15122         touch $DIR/$tdir/$tfile || error "touch failed"
15123         # OBD_FAIL_LLITE_XATTR_ENOMEM
15124         $LCTL set_param fail_loc=0x1405
15125         getfattr -n user.attr $DIR/$tdir/$tfile &&
15126                 error "getfattr should have failed with ENOMEM"
15127         $LCTL set_param fail_loc=0x0
15128         rm -rf $DIR/$tdir
15129
15130         restore_lustre_params < $p
15131         rm -f $p
15132 }
15133 run_test 234 "xattr cache should not crash on ENOMEM"
15134
15135 test_235() {
15136         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
15137                 skip "Need MDS version at least 2.4.52"
15138
15139         flock_deadlock $DIR/$tfile
15140         local RC=$?
15141         case $RC in
15142                 0)
15143                 ;;
15144                 124) error "process hangs on a deadlock"
15145                 ;;
15146                 *) error "error executing flock_deadlock $DIR/$tfile"
15147                 ;;
15148         esac
15149 }
15150 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15151
15152 #LU-2935
15153 test_236() {
15154         check_swap_layouts_support
15155
15156         local ref1=/etc/passwd
15157         local ref2=/etc/group
15158         local file1=$DIR/$tdir/f1
15159         local file2=$DIR/$tdir/f2
15160
15161         test_mkdir -c1 $DIR/$tdir
15162         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15163         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15164         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15165         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15166         local fd=$(free_fd)
15167         local cmd="exec $fd<>$file2"
15168         eval $cmd
15169         rm $file2
15170         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15171                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15172         cmd="exec $fd>&-"
15173         eval $cmd
15174         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15175
15176         #cleanup
15177         rm -rf $DIR/$tdir
15178 }
15179 run_test 236 "Layout swap on open unlinked file"
15180
15181 # test to verify file handle related system calls
15182 # (name_to_handle_at/open_by_handle_at)
15183 # The new system calls are supported in glibc >= 2.14.
15184
15185 test_237() {
15186         echo "Test file_handle syscalls" > $DIR/$tfile ||
15187                 error "write failed"
15188         check_fhandle_syscalls $DIR/$tfile ||
15189                 error "check_fhandle_syscalls failed"
15190 }
15191 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
15192
15193 # LU-4659 linkea consistency
15194 test_238() {
15195         local server_version=$(lustre_version_code $SINGLEMDS)
15196
15197         [[ $server_version -gt $(version_code 2.5.57) ]] ||
15198                 [[ $server_version -gt $(version_code 2.5.1) &&
15199                    $server_version -lt $(version_code 2.5.50) ]] ||
15200                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15201
15202         touch $DIR/$tfile
15203         ln $DIR/$tfile $DIR/$tfile.lnk
15204         touch $DIR/$tfile.new
15205         mv $DIR/$tfile.new $DIR/$tfile
15206         local fid1=$($LFS path2fid $DIR/$tfile)
15207         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15208         local path1=$($LFS fid2path $FSNAME "$fid1")
15209         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15210         local path2=$($LFS fid2path $FSNAME "$fid2")
15211         [ $tfile.lnk == $path2 ] ||
15212                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15213         rm -f $DIR/$tfile*
15214 }
15215 run_test 238 "Verify linkea consistency"
15216
15217 test_239A() { # was test_239
15218         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
15219                 skip "Need MDS version at least 2.5.60"
15220
15221         local list=$(comma_list $(mdts_nodes))
15222
15223         mkdir -p $DIR/$tdir
15224         createmany -o $DIR/$tdir/f- 5000
15225         unlinkmany $DIR/$tdir/f- 5000
15226         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
15227                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15228         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15229                         osp.*MDT*.sync_in_flight" | calc_sum)
15230         [ "$changes" -eq 0 ] || error "$changes not synced"
15231 }
15232 run_test 239A "osp_sync test"
15233
15234 test_239a() { #LU-5297
15235         remote_mds_nodsh && skip "remote MDS with nodsh"
15236
15237         touch $DIR/$tfile
15238         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15239         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15240         chgrp $RUNAS_GID $DIR/$tfile
15241         wait_delete_completed
15242 }
15243 run_test 239a "process invalid osp sync record correctly"
15244
15245 test_239b() { #LU-5297
15246         remote_mds_nodsh && skip "remote MDS with nodsh"
15247
15248         touch $DIR/$tfile1
15249         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15250         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15251         chgrp $RUNAS_GID $DIR/$tfile1
15252         wait_delete_completed
15253         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15254         touch $DIR/$tfile2
15255         chgrp $RUNAS_GID $DIR/$tfile2
15256         wait_delete_completed
15257 }
15258 run_test 239b "process osp sync record with ENOMEM error correctly"
15259
15260 test_240() {
15261         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15262         remote_mds_nodsh && skip "remote MDS with nodsh"
15263
15264         mkdir -p $DIR/$tdir
15265
15266         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15267                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15268         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15269                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15270
15271         umount_client $MOUNT || error "umount failed"
15272         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15273         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15274         mount_client $MOUNT || error "failed to mount client"
15275
15276         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15277         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15278 }
15279 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15280
15281 test_241_bio() {
15282         for LOOP in $(seq $1); do
15283                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
15284                 cancel_lru_locks $OSC || true
15285         done
15286 }
15287
15288 test_241_dio() {
15289         for LOOP in $(seq $1); do
15290                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
15291                                                 iflag=direct 2>/dev/null
15292         done
15293 }
15294
15295 test_241a() { # was test_241
15296         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15297         ls -la $DIR/$tfile
15298         cancel_lru_locks $OSC
15299         test_241_bio 1000 &
15300         PID=$!
15301         test_241_dio 1000
15302         wait $PID
15303 }
15304 run_test 241a "bio vs dio"
15305
15306 test_241b() {
15307         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15308         ls -la $DIR/$tfile
15309         test_241_dio 1000 &
15310         PID=$!
15311         test_241_dio 1000
15312         wait $PID
15313 }
15314 run_test 241b "dio vs dio"
15315
15316 test_242() {
15317         remote_mds_nodsh && skip "remote MDS with nodsh"
15318
15319         mkdir -p $DIR/$tdir
15320         touch $DIR/$tdir/$tfile
15321
15322         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15323         do_facet mds1 lctl set_param fail_loc=0x105
15324         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15325
15326         do_facet mds1 lctl set_param fail_loc=0
15327         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15328 }
15329 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15330
15331 test_243()
15332 {
15333         test_mkdir $DIR/$tdir
15334         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15335 }
15336 run_test 243 "various group lock tests"
15337
15338 test_244()
15339 {
15340         test_mkdir $DIR/$tdir
15341         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15342         sendfile_grouplock $DIR/$tdir/$tfile || \
15343                 error "sendfile+grouplock failed"
15344         rm -rf $DIR/$tdir
15345 }
15346 run_test 244 "sendfile with group lock tests"
15347
15348 test_245() {
15349         local flagname="multi_mod_rpcs"
15350         local connect_data_name="max_mod_rpcs"
15351         local out
15352
15353         # check if multiple modify RPCs flag is set
15354         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15355                 grep "connect_flags:")
15356         echo "$out"
15357
15358         echo "$out" | grep -qw $flagname
15359         if [ $? -ne 0 ]; then
15360                 echo "connect flag $flagname is not set"
15361                 return
15362         fi
15363
15364         # check if multiple modify RPCs data is set
15365         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15366         echo "$out"
15367
15368         echo "$out" | grep -qw $connect_data_name ||
15369                 error "import should have connect data $connect_data_name"
15370 }
15371 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15372
15373 test_246() { # LU-7371
15374         remote_ost_nodsh && skip "remote OST with nodsh"
15375         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15376                 skip "Need OST version >= 2.7.62"
15377
15378         do_facet ost1 $LCTL set_param fail_val=4095
15379 #define OBD_FAIL_OST_READ_SIZE          0x234
15380         do_facet ost1 $LCTL set_param fail_loc=0x234
15381         $LFS setstripe $DIR/$tfile -i 0 -c 1
15382         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15383         cancel_lru_locks $FSNAME-OST0000
15384         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15385 }
15386 run_test 246 "Read file of size 4095 should return right length"
15387
15388 cleanup_247() {
15389         local submount=$1
15390
15391         trap 0
15392         umount_client $submount
15393         rmdir $submount
15394 }
15395
15396 test_247a() {
15397         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15398                 grep -q subtree ||
15399                 skip_env "Fileset feature is not supported"
15400
15401         local submount=${MOUNT}_$tdir
15402
15403         mkdir $MOUNT/$tdir
15404         mkdir -p $submount || error "mkdir $submount failed"
15405         FILESET="$FILESET/$tdir" mount_client $submount ||
15406                 error "mount $submount failed"
15407         trap "cleanup_247 $submount" EXIT
15408         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15409         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15410                 error "read $MOUNT/$tdir/$tfile failed"
15411         cleanup_247 $submount
15412 }
15413 run_test 247a "mount subdir as fileset"
15414
15415 test_247b() {
15416         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15417                 skip_env "Fileset feature is not supported"
15418
15419         local submount=${MOUNT}_$tdir
15420
15421         rm -rf $MOUNT/$tdir
15422         mkdir -p $submount || error "mkdir $submount failed"
15423         SKIP_FILESET=1
15424         FILESET="$FILESET/$tdir" mount_client $submount &&
15425                 error "mount $submount should fail"
15426         rmdir $submount
15427 }
15428 run_test 247b "mount subdir that dose not exist"
15429
15430 test_247c() {
15431         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15432                 skip_env "Fileset feature is not supported"
15433
15434         local submount=${MOUNT}_$tdir
15435
15436         mkdir -p $MOUNT/$tdir/dir1
15437         mkdir -p $submount || error "mkdir $submount failed"
15438         trap "cleanup_247 $submount" EXIT
15439         FILESET="$FILESET/$tdir" mount_client $submount ||
15440                 error "mount $submount failed"
15441         local fid=$($LFS path2fid $MOUNT/)
15442         $LFS fid2path $submount $fid && error "fid2path should fail"
15443         cleanup_247 $submount
15444 }
15445 run_test 247c "running fid2path outside root"
15446
15447 test_247d() {
15448         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15449                 skip "Fileset feature is not supported"
15450
15451         local submount=${MOUNT}_$tdir
15452
15453         mkdir -p $MOUNT/$tdir/dir1
15454         mkdir -p $submount || error "mkdir $submount failed"
15455         FILESET="$FILESET/$tdir" mount_client $submount ||
15456                 error "mount $submount failed"
15457         trap "cleanup_247 $submount" EXIT
15458         local fid=$($LFS path2fid $submount/dir1)
15459         $LFS fid2path $submount $fid || error "fid2path should succeed"
15460         cleanup_247 $submount
15461 }
15462 run_test 247d "running fid2path inside root"
15463
15464 # LU-8037
15465 test_247e() {
15466         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15467                 grep -q subtree ||
15468                 skip "Fileset feature is not supported"
15469
15470         local submount=${MOUNT}_$tdir
15471
15472         mkdir $MOUNT/$tdir
15473         mkdir -p $submount || error "mkdir $submount failed"
15474         FILESET="$FILESET/.." mount_client $submount &&
15475                 error "mount $submount should fail"
15476         rmdir $submount
15477 }
15478 run_test 247e "mount .. as fileset"
15479
15480 test_248() {
15481         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15482         [ -z "$fast_read_sav" ] && skip "no fast read support"
15483
15484         # create a large file for fast read verification
15485         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15486
15487         # make sure the file is created correctly
15488         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15489                 { rm -f $DIR/$tfile; skip "file creation error"; }
15490
15491         echo "Test 1: verify that fast read is 4 times faster on cache read"
15492
15493         # small read with fast read enabled
15494         $LCTL set_param -n llite.*.fast_read=1
15495         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15496                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15497                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15498         # small read with fast read disabled
15499         $LCTL set_param -n llite.*.fast_read=0
15500         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15501                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15502                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15503
15504         # verify that fast read is 4 times faster for cache read
15505         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15506                 error_not_in_vm "fast read was not 4 times faster: " \
15507                            "$t_fast vs $t_slow"
15508
15509         echo "Test 2: verify the performance between big and small read"
15510         $LCTL set_param -n llite.*.fast_read=1
15511
15512         # 1k non-cache read
15513         cancel_lru_locks osc
15514         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15515                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15516                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15517
15518         # 1M non-cache read
15519         cancel_lru_locks osc
15520         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15521                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15522                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15523
15524         # verify that big IO is not 4 times faster than small IO
15525         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
15526                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
15527
15528         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
15529         rm -f $DIR/$tfile
15530 }
15531 run_test 248 "fast read verification"
15532
15533 test_249() { # LU-7890
15534         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
15535                 skip "Need at least version 2.8.54"
15536
15537         rm -f $DIR/$tfile
15538         $SETSTRIPE -c 1 $DIR/$tfile
15539         # Offset 2T == 4k * 512M
15540         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
15541                 error "dd to 2T offset failed"
15542 }
15543 run_test 249 "Write above 2T file size"
15544
15545 test_250() {
15546         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
15547          && skip "no 16TB file size limit on ZFS"
15548
15549         $SETSTRIPE -c 1 $DIR/$tfile
15550         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
15551         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
15552         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
15553         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
15554                 conv=notrunc,fsync && error "append succeeded"
15555         return 0
15556 }
15557 run_test 250 "Write above 16T limit"
15558
15559 test_251() {
15560         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
15561
15562         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
15563         #Skip once - writing the first stripe will succeed
15564         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15565         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
15566                 error "short write happened"
15567
15568         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15569         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
15570                 error "short read happened"
15571
15572         rm -f $DIR/$tfile
15573 }
15574 run_test 251 "Handling short read and write correctly"
15575
15576 test_252() {
15577         remote_mds_nodsh && skip "remote MDS with nodsh"
15578         remote_ost_nodsh && skip "remote OST with nodsh"
15579         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
15580              "$(facet_fstype mds1)" != "ldiskfs" ]; then
15581                 skip_env "ldiskfs only test"
15582         fi
15583
15584         local tgt
15585         local dev
15586         local out
15587         local uuid
15588         local num
15589         local gen
15590
15591         # check lr_reader on OST0000
15592         tgt=ost1
15593         dev=$(facet_device $tgt)
15594         out=$(do_facet $tgt $LR_READER $dev)
15595         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15596         echo "$out"
15597         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
15598         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
15599                 error "Invalid uuid returned by $LR_READER on target $tgt"
15600         echo -e "uuid returned by $LR_READER is '$uuid'\n"
15601
15602         # check lr_reader -c on MDT0000
15603         tgt=mds1
15604         dev=$(facet_device $tgt)
15605         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
15606                 skip "$LR_READER does not support additional options"
15607         fi
15608         out=$(do_facet $tgt $LR_READER -c $dev)
15609         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15610         echo "$out"
15611         num=$(echo "$out" | grep -c "mdtlov")
15612         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
15613                 error "Invalid number of mdtlov clients returned by $LR_READER"
15614         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
15615
15616         # check lr_reader -cr on MDT0000
15617         out=$(do_facet $tgt $LR_READER -cr $dev)
15618         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15619         echo "$out"
15620         echo "$out" | grep -q "^reply_data:$" ||
15621                 error "$LR_READER should have returned 'reply_data' section"
15622         num=$(echo "$out" | grep -c "client_generation")
15623         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
15624 }
15625 run_test 252 "check lr_reader tool"
15626
15627 test_253_fill_ost() {
15628         local size_mb #how many MB should we write to pass watermark
15629         local lwm=$3  #low watermark
15630         local free_10mb #10% of free space
15631
15632         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15633         size_mb=$((free_kb / 1024 - lwm))
15634         free_10mb=$((free_kb / 10240))
15635         #If 10% of free space cross low watermark use it
15636         if (( free_10mb > size_mb )); then
15637                 size_mb=$free_10mb
15638         else
15639                 #At least we need to store 1.1 of difference between
15640                 #free space and low watermark
15641                 size_mb=$((size_mb + size_mb / 10))
15642         fi
15643         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
15644                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
15645                          oflag=append conv=notrunc
15646         fi
15647
15648         sleep_maxage
15649
15650         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15651         echo "OST still has $((free_kb / 1024)) mbytes free"
15652 }
15653
15654 test_253() {
15655         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15656         remote_mds_nodsh && skip "remote MDS with nodsh"
15657         remote_mgs_nodsh && skip "remote MGS with nodsh"
15658
15659         local ostidx=0
15660         local rc=0
15661
15662         local ost_name=$($LFS osts |
15663                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
15664         # on the mdt's osc
15665         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
15666         do_facet $SINGLEMDS $LCTL get_param -n \
15667                 osp.$mdtosc_proc1.reserved_mb_high ||
15668                 skip  "remote MDS does not support reserved_mb_high"
15669
15670         rm -rf $DIR/$tdir
15671         wait_mds_ost_sync
15672         wait_delete_completed
15673         mkdir $DIR/$tdir
15674
15675         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
15676                         osp.$mdtosc_proc1.reserved_mb_high)
15677         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
15678                         osp.$mdtosc_proc1.reserved_mb_low)
15679         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
15680
15681         if ! combined_mgs_mds ; then
15682                 mount_mgs_client
15683         fi
15684         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
15685         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
15686                 error "Adding $ost_name to pool failed"
15687
15688         # Wait for client to see a OST at pool
15689         wait_update $HOSTNAME "$LCTL get_param -n
15690                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
15691                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
15692                 error "Client can not see the pool"
15693         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
15694                 error "Setstripe failed"
15695
15696         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
15697         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
15698         echo "OST still has $((blocks/1024)) mbytes free"
15699
15700         local new_lwm=$((blocks/1024-10))
15701         do_facet $SINGLEMDS $LCTL set_param \
15702                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
15703         do_facet $SINGLEMDS $LCTL set_param \
15704                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
15705
15706         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15707
15708         #First enospc could execute orphan deletion so repeat.
15709         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15710
15711         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15712                         osp.$mdtosc_proc1.prealloc_status)
15713         echo "prealloc_status $oa_status"
15714
15715         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
15716                 error "File creation should fail"
15717         #object allocation was stopped, but we still able to append files
15718         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
15719                 error "Append failed"
15720         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
15721
15722         wait_delete_completed
15723
15724         sleep_maxage
15725
15726         for i in $(seq 10 12); do
15727                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
15728                         error "File creation failed after rm";
15729         done
15730
15731         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15732                         osp.$mdtosc_proc1.prealloc_status)
15733         echo "prealloc_status $oa_status"
15734
15735         if (( oa_status != 0 )); then
15736                 error "Object allocation still disable after rm"
15737         fi
15738         do_facet $SINGLEMDS $LCTL set_param \
15739                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
15740         do_facet $SINGLEMDS $LCTL set_param \
15741                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
15742
15743
15744         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
15745                 error "Remove $ost_name from pool failed"
15746         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
15747                 error "Pool destroy fialed"
15748
15749         if ! combined_mgs_mds ; then
15750                 umount_mgs_client
15751         fi
15752 }
15753 run_test 253 "Check object allocation limit"
15754
15755 test_254() {
15756         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15757         remote_mds_nodsh && skip "remote MDS with nodsh"
15758         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
15759                 skip "MDS does not support changelog_size"
15760
15761         local cl_user
15762         local MDT0=$(facet_svc $SINGLEMDS)
15763
15764         changelog_register || error "changelog_register failed"
15765
15766         changelog_clear 0 || error "changelog_clear failed"
15767
15768         local size1=$(do_facet $SINGLEMDS \
15769                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15770         echo "Changelog size $size1"
15771
15772         rm -rf $DIR/$tdir
15773         $LFS mkdir -i 0 $DIR/$tdir
15774         # change something
15775         mkdir -p $DIR/$tdir/pics/2008/zachy
15776         touch $DIR/$tdir/pics/2008/zachy/timestamp
15777         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
15778         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
15779         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
15780         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
15781         rm $DIR/$tdir/pics/desktop.jpg
15782
15783         local size2=$(do_facet $SINGLEMDS \
15784                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15785         echo "Changelog size after work $size2"
15786
15787         (( $size2 > $size1 )) ||
15788                 error "new Changelog size=$size2 less than old size=$size1"
15789 }
15790 run_test 254 "Check changelog size"
15791
15792 ladvise_no_type()
15793 {
15794         local type=$1
15795         local file=$2
15796
15797         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
15798                 awk -F: '{print $2}' | grep $type > /dev/null
15799         if [ $? -ne 0 ]; then
15800                 return 0
15801         fi
15802         return 1
15803 }
15804
15805 ladvise_no_ioctl()
15806 {
15807         local file=$1
15808
15809         lfs ladvise -a willread $file > /dev/null 2>&1
15810         if [ $? -eq 0 ]; then
15811                 return 1
15812         fi
15813
15814         lfs ladvise -a willread $file 2>&1 |
15815                 grep "Inappropriate ioctl for device" > /dev/null
15816         if [ $? -eq 0 ]; then
15817                 return 0
15818         fi
15819         return 1
15820 }
15821
15822 percent() {
15823         bc <<<"scale=2; ($1 - $2) * 100 / $2"
15824 }
15825
15826 # run a random read IO workload
15827 # usage: random_read_iops <filename> <filesize> <iosize>
15828 random_read_iops() {
15829         local file=$1
15830         local fsize=$2
15831         local iosize=${3:-4096}
15832
15833         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
15834                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
15835 }
15836
15837 drop_file_oss_cache() {
15838         local file="$1"
15839         local nodes="$2"
15840
15841         $LFS ladvise -a dontneed $file 2>/dev/null ||
15842                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
15843 }
15844
15845 ladvise_willread_performance()
15846 {
15847         local repeat=10
15848         local average_origin=0
15849         local average_cache=0
15850         local average_ladvise=0
15851
15852         for ((i = 1; i <= $repeat; i++)); do
15853                 echo "Iter $i/$repeat: reading without willread hint"
15854                 cancel_lru_locks osc
15855                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15856                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
15857                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
15858                 average_origin=$(bc <<<"$average_origin + $speed_origin")
15859
15860                 cancel_lru_locks osc
15861                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
15862                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
15863                 average_cache=$(bc <<<"$average_cache + $speed_cache")
15864
15865                 cancel_lru_locks osc
15866                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15867                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
15868                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
15869                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
15870                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
15871         done
15872         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
15873         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
15874         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
15875
15876         speedup_cache=$(percent $average_cache $average_origin)
15877         speedup_ladvise=$(percent $average_ladvise $average_origin)
15878
15879         echo "Average uncached read: $average_origin"
15880         echo "Average speedup with OSS cached read: " \
15881                 "$average_cache = +$speedup_cache%"
15882         echo "Average speedup with ladvise willread: " \
15883                 "$average_ladvise = +$speedup_ladvise%"
15884
15885         local lowest_speedup=20
15886         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
15887                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
15888                         "got $average_cache%. Skipping ladvise willread check."
15889                 return 0
15890         fi
15891
15892         # the test won't work on ZFS until it supports 'ladvise dontneed', but
15893         # it is still good to run until then to exercise 'ladvise willread'
15894         ! $LFS ladvise -a dontneed $DIR/$tfile &&
15895                 [ "$(facet_fstype ost1)" = "zfs" ] &&
15896                 echo "osd-zfs does not support dontneed or drop_caches" &&
15897                 return 0
15898
15899         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
15900         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
15901                 error_not_in_vm "Speedup with willread is less than " \
15902                         "$lowest_speedup%, got $average_ladvise%"
15903 }
15904
15905 test_255a() {
15906         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15907                 skip "lustre < 2.8.54 does not support ladvise "
15908         remote_ost_nodsh && skip "remote OST with nodsh"
15909
15910         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
15911
15912         ladvise_no_type willread $DIR/$tfile &&
15913                 skip "willread ladvise is not supported"
15914
15915         ladvise_no_ioctl $DIR/$tfile &&
15916                 skip "ladvise ioctl is not supported"
15917
15918         local size_mb=100
15919         local size=$((size_mb * 1048576))
15920         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15921                 error "dd to $DIR/$tfile failed"
15922
15923         lfs ladvise -a willread $DIR/$tfile ||
15924                 error "Ladvise failed with no range argument"
15925
15926         lfs ladvise -a willread -s 0 $DIR/$tfile ||
15927                 error "Ladvise failed with no -l or -e argument"
15928
15929         lfs ladvise -a willread -e 1 $DIR/$tfile ||
15930                 error "Ladvise failed with only -e argument"
15931
15932         lfs ladvise -a willread -l 1 $DIR/$tfile ||
15933                 error "Ladvise failed with only -l argument"
15934
15935         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
15936                 error "End offset should not be smaller than start offset"
15937
15938         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
15939                 error "End offset should not be equal to start offset"
15940
15941         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
15942                 error "Ladvise failed with overflowing -s argument"
15943
15944         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
15945                 error "Ladvise failed with overflowing -e argument"
15946
15947         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
15948                 error "Ladvise failed with overflowing -l argument"
15949
15950         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
15951                 error "Ladvise succeeded with conflicting -l and -e arguments"
15952
15953         echo "Synchronous ladvise should wait"
15954         local delay=4
15955 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
15956         do_nodes $(comma_list $(osts_nodes)) \
15957                 $LCTL set_param fail_val=$delay fail_loc=0x237
15958
15959         local start_ts=$SECONDS
15960         lfs ladvise -a willread $DIR/$tfile ||
15961                 error "Ladvise failed with no range argument"
15962         local end_ts=$SECONDS
15963         local inteval_ts=$((end_ts - start_ts))
15964
15965         if [ $inteval_ts -lt $(($delay - 1)) ]; then
15966                 error "Synchronous advice didn't wait reply"
15967         fi
15968
15969         echo "Asynchronous ladvise shouldn't wait"
15970         local start_ts=$SECONDS
15971         lfs ladvise -a willread -b $DIR/$tfile ||
15972                 error "Ladvise failed with no range argument"
15973         local end_ts=$SECONDS
15974         local inteval_ts=$((end_ts - start_ts))
15975
15976         if [ $inteval_ts -gt $(($delay / 2)) ]; then
15977                 error "Asynchronous advice blocked"
15978         fi
15979
15980         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
15981         ladvise_willread_performance
15982 }
15983 run_test 255a "check 'lfs ladvise -a willread'"
15984
15985 facet_meminfo() {
15986         local facet=$1
15987         local info=$2
15988
15989         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
15990 }
15991
15992 test_255b() {
15993         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15994                 skip "lustre < 2.8.54 does not support ladvise "
15995         remote_ost_nodsh && skip "remote OST with nodsh"
15996
15997         lfs setstripe -c 1 -i 0 $DIR/$tfile
15998
15999         ladvise_no_type dontneed $DIR/$tfile &&
16000                 skip "dontneed ladvise is not supported"
16001
16002         ladvise_no_ioctl $DIR/$tfile &&
16003                 skip "ladvise ioctl is not supported"
16004
16005         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16006                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16007                 skip "zfs-osd does not support 'ladvise dontneed'"
16008
16009         local size_mb=100
16010         local size=$((size_mb * 1048576))
16011         # In order to prevent disturbance of other processes, only check 3/4
16012         # of the memory usage
16013         local kibibytes=$((size_mb * 1024 * 3 / 4))
16014
16015         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16016                 error "dd to $DIR/$tfile failed"
16017
16018         local total=$(facet_meminfo ost1 MemTotal)
16019         echo "Total memory: $total KiB"
16020
16021         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16022         local before_read=$(facet_meminfo ost1 Cached)
16023         echo "Cache used before read: $before_read KiB"
16024
16025         lfs ladvise -a willread $DIR/$tfile ||
16026                 error "Ladvise willread failed"
16027         local after_read=$(facet_meminfo ost1 Cached)
16028         echo "Cache used after read: $after_read KiB"
16029
16030         lfs ladvise -a dontneed $DIR/$tfile ||
16031                 error "Ladvise dontneed again failed"
16032         local no_read=$(facet_meminfo ost1 Cached)
16033         echo "Cache used after dontneed ladvise: $no_read KiB"
16034
16035         if [ $total -lt $((before_read + kibibytes)) ]; then
16036                 echo "Memory is too small, abort checking"
16037                 return 0
16038         fi
16039
16040         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16041                 error "Ladvise willread should use more memory" \
16042                         "than $kibibytes KiB"
16043         fi
16044
16045         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16046                 error "Ladvise dontneed should release more memory" \
16047                         "than $kibibytes KiB"
16048         fi
16049 }
16050 run_test 255b "check 'lfs ladvise -a dontneed'"
16051
16052 test_255c() {
16053         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
16054                 skip "lustre < 2.10.53 does not support lockahead"
16055
16056         local count
16057         local new_count
16058         local difference
16059         local i
16060         local rc
16061
16062         test_mkdir -p $DIR/$tdir
16063         $SETSTRIPE -i 0 $DIR/$tdir
16064
16065         #test 10 returns only success/failure
16066         i=10
16067         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16068         rc=$?
16069         if [ $rc -eq 255 ]; then
16070                 error "Ladvise test${i} failed, ${rc}"
16071         fi
16072
16073         #test 11 counts lock enqueue requests, all others count new locks
16074         i=11
16075         count=$(do_facet ost1 \
16076                 $LCTL get_param -n ost.OSS.ost.stats)
16077         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16078
16079         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16080         rc=$?
16081         if [ $rc -eq 255 ]; then
16082                 error "Ladvise test${i} failed, ${rc}"
16083         fi
16084
16085         new_count=$(do_facet ost1 \
16086                 $LCTL get_param -n ost.OSS.ost.stats)
16087         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16088                    awk '{ print $2 }')
16089
16090         difference="$((new_count - count))"
16091         if [ $difference -ne $rc ]; then
16092                 error "Ladvise test${i}, bad enqueue count, returned " \
16093                       "${rc}, actual ${difference}"
16094         fi
16095
16096         for i in $(seq 12 21); do
16097                 # If we do not do this, we run the risk of having too many
16098                 # locks and starting lock cancellation while we are checking
16099                 # lock counts.
16100                 cancel_lru_locks osc
16101
16102                 count=$($LCTL get_param -n \
16103                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16104
16105                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16106                 rc=$?
16107                 if [ $rc -eq 255 ]; then
16108                         error "Ladvise test ${i} failed, ${rc}"
16109                 fi
16110
16111                 new_count=$($LCTL get_param -n \
16112                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16113                 difference="$((new_count - count))"
16114
16115                 # Test 15 output is divided by 100 to map down to valid return
16116                 if [ $i -eq 15 ]; then
16117                         rc="$((rc * 100))"
16118                 fi
16119
16120                 if [ $difference -ne $rc ]; then
16121                         error "Ladvise test ${i}, bad lock count, returned " \
16122                               "${rc}, actual ${difference}"
16123                 fi
16124         done
16125
16126         #test 22 returns only success/failure
16127         i=22
16128         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16129         rc=$?
16130         if [ $rc -eq 255 ]; then
16131                 error "Ladvise test${i} failed, ${rc}"
16132         fi
16133 }
16134 run_test 255c "suite of ladvise lockahead tests"
16135
16136 test_256() {
16137         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16138         remote_mds_nodsh && skip "remote MDS with nodsh"
16139         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
16140                 skip "ldiskfs only test"
16141         changelog_users $SINGLEMDS | grep "^cl" &&
16142                 skip "active changelog user"
16143
16144         local cl_user
16145         local cat_sl
16146         local mdt_dev
16147
16148         mdt_dev=$(mdsdevname 1)
16149         echo $mdt_dev
16150
16151         changelog_register || error "changelog_register failed"
16152
16153         rm -rf $DIR/$tdir
16154         mkdir -p $DIR/$tdir
16155
16156         changelog_clear 0 || error "changelog_clear failed"
16157
16158         # change something
16159         touch $DIR/$tdir/{1..10}
16160
16161         # stop the MDT
16162         stop $SINGLEMDS || error "Fail to stop MDT"
16163
16164         # remount the MDT
16165
16166         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16167
16168         #after mount new plainllog is used
16169         touch $DIR/$tdir/{11..19}
16170         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16171         cat_sl=$(do_facet $SINGLEMDS "sync; \
16172                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16173                  llog_reader $tmpfile | grep -c type=1064553b")
16174         do_facet $SINGLEMDS llog_reader $tmpfile
16175
16176         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16177
16178         changelog_clear 0 || error "changelog_clear failed"
16179
16180         cat_sl=$(do_facet $SINGLEMDS "sync; \
16181                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16182                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16183
16184         if (( cat_sl == 2 )); then
16185                 error "Empty plain llog was not deleted from changelog catalog"
16186         elif (( cat_sl != 1 )); then
16187                 error "Active plain llog shouldn't be deleted from catalog"
16188         fi
16189 }
16190 run_test 256 "Check llog delete for empty and not full state"
16191
16192 test_257() {
16193         remote_mds_nodsh && skip "remote MDS with nodsh"
16194         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16195                 skip "Need MDS version at least 2.8.55"
16196
16197         test_mkdir $DIR/$tdir
16198
16199         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16200                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16201         stat $DIR/$tdir
16202
16203 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16204         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16205         local facet=mds$((mdtidx + 1))
16206         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16207         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16208
16209         stop $facet || error "stop MDS failed"
16210         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16211                 error "start MDS fail"
16212 }
16213 run_test 257 "xattr locks are not lost"
16214
16215 # Verify we take the i_mutex when security requires it
16216 test_258a() {
16217 #define OBD_FAIL_IMUTEX_SEC 0x141c
16218         $LCTL set_param fail_loc=0x141c
16219         touch $DIR/$tfile
16220         chmod u+s $DIR/$tfile
16221         chmod a+rwx $DIR/$tfile
16222         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16223         RC=$?
16224         if [ $RC -ne 0 ]; then
16225                 error "error, failed to take i_mutex, rc=$?"
16226         fi
16227         rm -f $DIR/$tfile
16228 }
16229 run_test 258a
16230
16231 # Verify we do NOT take the i_mutex in the normal case
16232 test_258b() {
16233 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16234         $LCTL set_param fail_loc=0x141d
16235         touch $DIR/$tfile
16236         chmod a+rwx $DIR
16237         chmod a+rw $DIR/$tfile
16238         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16239         RC=$?
16240         if [ $RC -ne 0 ]; then
16241                 error "error, took i_mutex unnecessarily, rc=$?"
16242         fi
16243         rm -f $DIR/$tfile
16244
16245 }
16246 run_test 258b "verify i_mutex security behavior"
16247
16248 test_260() {
16249 #define OBD_FAIL_MDC_CLOSE               0x806
16250         $LCTL set_param fail_loc=0x80000806
16251         touch $DIR/$tfile
16252
16253 }
16254 run_test 260 "Check mdc_close fail"
16255
16256 ### Data-on-MDT sanity tests ###
16257 test_270a() {
16258         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16259                 skip "Need MDS version at least 2.10.55"
16260
16261         # create DoM file
16262         local dom=$DIR/$tdir/dom_file
16263         local tmp=$DIR/$tdir/tmp_file
16264
16265         mkdir -p $DIR/$tdir
16266
16267         # basic checks for DoM component creation
16268         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
16269                 error "Can set MDT layout to non-first entry"
16270
16271         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
16272                 error "Can define multiple entries as MDT layout"
16273
16274         $LFS setstripe -E 1M -L mdt $dom ||
16275                 error "Can't create DoM layout"
16276
16277         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16278         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16279         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16280
16281         local mdtidx=$($LFS getstripe -m $dom)
16282         local mdtname=MDT$(printf %04x $mdtidx)
16283         local facet=mds$((mdtidx + 1))
16284         local space_check=1
16285
16286         # Skip free space checks with ZFS
16287         if [ "$(facet_fstype $facet)" == "zfs" ]; then
16288                 space_check=0
16289         fi
16290
16291         # write
16292         sync
16293         local mdtfree1=$(do_facet $facet \
16294                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16295         dd if=/dev/urandom of=$tmp bs=1024 count=100
16296         # check also direct IO along write
16297         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
16298         sync
16299         cmp $tmp $dom || error "file data is different"
16300         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
16301         if [ $space_check == 1 ]; then
16302                 local mdtfree2=$(do_facet $facet \
16303                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16304                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16305                         error "MDT free space is wrong after write"
16306         fi
16307
16308         # truncate
16309         $TRUNCATE $dom 10000
16310         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
16311         if [ $space_check == 1 ]; then
16312                 mdtfree1=$(do_facet $facet \
16313                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16314                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
16315                         error "MDT free space is wrong after truncate"
16316         fi
16317
16318         # append
16319         cat $tmp >> $dom
16320         sync
16321         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
16322         if [ $space_check == 1 ]; then
16323                 mdtfree2=$(do_facet $facet \
16324                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16325                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16326                         error "MDT free space is wrong after append"
16327         fi
16328
16329         # delete
16330         rm $dom
16331         if [ $space_check == 1 ]; then
16332                 mdtfree1=$(do_facet $facet \
16333                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16334                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
16335                         error "MDT free space is wrong after removal"
16336         fi
16337
16338         # combined striping
16339         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16340                 error "Can't create DoM + OST striping"
16341
16342         dd if=/dev/urandom of=$tmp bs=1024 count=2000
16343         # check also direct IO along write
16344         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
16345         sync
16346         cmp $tmp $dom || error "file data is different"
16347         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
16348         rm $dom
16349         rm $tmp
16350
16351         return 0
16352 }
16353 run_test 270a "DoM: basic functionality tests"
16354
16355 test_270b() {
16356         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16357                 skip "Need MDS version at least 2.10.55"
16358
16359         local dom=$DIR/$tdir/dom_file
16360         local max_size=1048576
16361
16362         mkdir -p $DIR/$tdir
16363         $LFS setstripe -E $max_size -L mdt $dom
16364
16365         # truncate over the limit
16366         $TRUNCATE $dom $(($max_size + 1)) &&
16367                 error "successful truncate over the maximum size"
16368         # write over the limit
16369         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16370                 error "successful write over the maximum size"
16371         # append over the limit
16372         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16373         echo "12345" >> $dom && error "successful append over the maximum size"
16374         rm $dom
16375
16376         return 0
16377 }
16378 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16379
16380 test_270c() {
16381         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16382                 skip "Need MDS version at least 2.10.55"
16383
16384         mkdir -p $DIR/$tdir
16385         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16386
16387         # check files inherit DoM EA
16388         touch $DIR/$tdir/first
16389         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
16390                 error "bad pattern"
16391         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16392                 error "bad stripe count"
16393         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16394                 error "bad stripe size"
16395
16396         # check directory inherits DoM EA and uses it as default
16397         mkdir $DIR/$tdir/subdir
16398         touch $DIR/$tdir/subdir/second
16399         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16400                 error "bad pattern in sub-directory"
16401         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16402                 error "bad stripe count in sub-directory"
16403         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16404                 error "bad stripe size in sub-directory"
16405         return 0
16406 }
16407 run_test 270c "DoM: DoM EA inheritance tests"
16408
16409 test_270d() {
16410         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16411                 skip "Need MDS version at least 2.10.55"
16412
16413         mkdir -p $DIR/$tdir
16414         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16415
16416         # inherit default DoM striping
16417         mkdir $DIR/$tdir/subdir
16418         touch $DIR/$tdir/subdir/f1
16419
16420         # change default directory striping
16421         $LFS setstripe -c 1 $DIR/$tdir/subdir
16422         touch $DIR/$tdir/subdir/f2
16423         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16424                 error "wrong default striping in file 2"
16425         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16426                 error "bad pattern in file 2"
16427         return 0
16428 }
16429 run_test 270d "DoM: change striping from DoM to RAID0"
16430
16431 test_270e() {
16432         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16433                 skip "Need MDS version at least 2.10.55"
16434
16435         mkdir -p $DIR/$tdir/dom
16436         mkdir -p $DIR/$tdir/norm
16437         DOMFILES=20
16438         NORMFILES=10
16439         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16440         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16441
16442         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16443         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16444
16445         # find DoM files by layout
16446         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16447         [ $NUM -eq  $DOMFILES ] ||
16448                 error "lfs find -L: found $NUM, expected $DOMFILES"
16449         echo "Test 1: lfs find 20 DOM files by layout: OK"
16450
16451         # there should be 1 dir with default DOM striping
16452         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16453         [ $NUM -eq  1 ] ||
16454                 error "lfs find -L: found $NUM, expected 1 dir"
16455         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16456
16457         # find DoM files by stripe size
16458         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16459         [ $NUM -eq  $DOMFILES ] ||
16460                 error "lfs find -S: found $NUM, expected $DOMFILES"
16461         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16462
16463         # find files by stripe offset except DoM files
16464         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
16465         [ $NUM -eq  $NORMFILES ] ||
16466                 error "lfs find -i: found $NUM, expected $NORMFILES"
16467         echo "Test 5: lfs find no DOM files by stripe index: OK"
16468         return 0
16469 }
16470 run_test 270e "DoM: lfs find with DoM files test"
16471
16472 test_270f() {
16473         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16474                 skip "Need MDS version at least 2.10.55"
16475
16476         local mdtname=${FSNAME}-MDT0000-mdtlov
16477         local dom=$DIR/$tdir/dom_file
16478         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
16479                                                 lod.$mdtname.dom_stripesize)
16480         local dom_limit=131072
16481
16482         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
16483         local dom_current=$(do_facet mds1 $LCTL get_param -n \
16484                                                 lod.$mdtname.dom_stripesize)
16485         [ ${dom_limit} -eq ${dom_current} ] ||
16486                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
16487
16488         $LFS mkdir -i 0 -c 1 $DIR/$tdir
16489         $LFS setstripe -d $DIR/$tdir
16490         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
16491                 error "Can't set directory default striping"
16492
16493         # exceed maximum stripe size
16494         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16495                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
16496         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
16497                 error "Able to create DoM component size more than LOD limit"
16498
16499         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
16500         dom_current=$(do_facet mds1 $LCTL get_param -n \
16501                                                 lod.$mdtname.dom_stripesize)
16502         [ 0 -eq ${dom_current} ] ||
16503                 error "Can't set zero DoM stripe limit"
16504         rm $dom
16505
16506         # attempt to create DoM file on server with disabled DoM should
16507         # remove DoM entry from layout and be succeed
16508         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
16509                 error "Can't create DoM file (DoM is disabled)"
16510         [ $($LFS getstripe -L $dom) == "mdt" ] &&
16511                 error "File has DoM component while DoM is disabled"
16512         rm $dom
16513
16514         # attempt to create DoM file with only DoM stripe should return error
16515         $LFS setstripe -E $dom_limit -L mdt $dom &&
16516                 error "Able to create DoM-only file while DoM is disabled"
16517
16518         # too low values to be aligned with smallest stripe size 64K
16519         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
16520         dom_current=$(do_facet mds1 $LCTL get_param -n \
16521                                                 lod.$mdtname.dom_stripesize)
16522         [ 30000 -eq ${dom_current} ] &&
16523                 error "Can set too small DoM stripe limit"
16524
16525         # 64K is a minimal stripe size in Lustre, expect limit of that size
16526         [ 65536 -eq ${dom_current} ] ||
16527                 error "Limit is not set to 64K but ${dom_current}"
16528
16529         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
16530         dom_current=$(do_facet mds1 $LCTL get_param -n \
16531                                                 lod.$mdtname.dom_stripesize)
16532         echo $dom_current
16533         [ 2147483648 -eq ${dom_current} ] &&
16534                 error "Can set too large DoM stripe limit"
16535
16536         do_facet mds1 $LCTL set_param -n \
16537                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
16538         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16539                 error "Can't create DoM component size after limit change"
16540         do_facet mds1 $LCTL set_param -n \
16541                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
16542         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
16543                 error "Can't create DoM file after limit decrease"
16544         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
16545                 error "Can create big DoM component after limit decrease"
16546         touch ${dom}_def ||
16547                 error "Can't create file with old default layout"
16548
16549         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
16550         return 0
16551 }
16552 run_test 270f "DoM: maximum DoM stripe size checks"
16553
16554 test_271a() {
16555         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16556                 skip "Need MDS version at least 2.10.55"
16557
16558         local dom=$DIR/$tdir/dom
16559
16560         mkdir -p $DIR/$tdir
16561
16562         $LFS setstripe -E 1024K -L mdt $dom
16563
16564         lctl set_param -n mdc.*.stats=clear
16565         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16566         cat $dom > /dev/null
16567         local reads=$(lctl get_param -n mdc.*.stats |
16568                         awk '/ost_read/ {print $2}')
16569         [ -z $reads ] || error "Unexpected $reads READ RPCs"
16570         ls $dom
16571         rm -f $dom
16572 }
16573 run_test 271a "DoM: data is cached for read after write"
16574
16575 test_271b() {
16576         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16577                 skip "Need MDS version at least 2.10.55"
16578
16579         local dom=$DIR/$tdir/dom
16580
16581         mkdir -p $DIR/$tdir
16582
16583         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16584
16585         lctl set_param -n mdc.*.stats=clear
16586         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16587         cancel_lru_locks mdc
16588         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
16589         # second stat to check size is cached on client
16590         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
16591         local gls=$(lctl get_param -n mdc.*.stats |
16592                         awk '/ldlm_glimpse/ {print $2}')
16593         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16594         rm -f $dom
16595 }
16596 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
16597
16598 test_271ba() {
16599         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16600                 skip "Need MDS version at least 2.10.55"
16601
16602         local dom=$DIR/$tdir/dom
16603
16604         mkdir -p $DIR/$tdir
16605
16606         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16607
16608         lctl set_param -n mdc.*.stats=clear
16609         lctl set_param -n osc.*.stats=clear
16610         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
16611         cancel_lru_locks mdc
16612         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16613         # second stat to check size is cached on client
16614         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16615         local gls=$(lctl get_param -n mdc.*.stats |
16616                         awk '/ldlm_glimpse/ {print $2}')
16617         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16618         local gls=$(lctl get_param -n osc.*.stats |
16619                         awk '/ldlm_glimpse/ {print $2}')
16620         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
16621         rm -f $dom
16622 }
16623 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
16624
16625 test_271c() {
16626         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16627                 skip "Need MDS version at least 2.10.55"
16628
16629         local dom=$DIR/$tdir/dom
16630
16631         mkdir -p $DIR/$tdir
16632
16633         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16634
16635         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16636         local facet=mds$((mdtidx + 1))
16637
16638         cancel_lru_locks mdc
16639         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
16640         createmany -o $dom 1000
16641         lctl set_param -n mdc.*.stats=clear
16642         smalliomany -w $dom 1000 200
16643         lctl get_param -n mdc.*.stats
16644         local enq=$(lctl get_param -n mdc.*.stats |
16645                         awk '/ldlm_ibits_enqueue/ {print $2}')
16646         # Each file has 1 open, 1 IO enqueues, total 2000
16647         # but now we have also +1 getxattr for security.capability, total 3000
16648         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
16649         unlinkmany $dom 1000
16650
16651         cancel_lru_locks mdc
16652         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
16653         createmany -o $dom 1000
16654         lctl set_param -n mdc.*.stats=clear
16655         smalliomany -w $dom 1000 200
16656         lctl get_param -n mdc.*.stats
16657         local enq_2=$(lctl get_param -n mdc.*.stats |
16658                         awk '/ldlm_ibits_enqueue/ {print $2}')
16659         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
16660         # for OPEN and IO lock.
16661         [ $((enq - enq_2)) -ge 1000 ] ||
16662                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
16663         unlinkmany $dom 1000
16664         return 0
16665 }
16666 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
16667
16668 test_275() {
16669         remote_ost_nodsh && skip "remote OST with nodsh"
16670         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
16671                 skip "Need OST version >= 2.10.57"
16672
16673         local file=$DIR/$tfile
16674         local oss
16675
16676         oss=$(comma_list $(osts_nodes))
16677
16678         dd if=/dev/urandom of=$file bs=1M count=2 ||
16679                 error "failed to create a file"
16680         cancel_lru_locks osc
16681
16682         #lock 1
16683         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
16684                 error "failed to read a file"
16685
16686 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
16687         $LCTL set_param fail_loc=0x8000031f
16688
16689         cancel_lru_locks osc &
16690         sleep 1
16691
16692 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
16693         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
16694         #IO takes another lock, but matches the PENDING one
16695         #and places it to the IO RPC
16696         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
16697                 error "failed to read a file with PENDING lock"
16698 }
16699 run_test 275 "Read on a canceled duplicate lock"
16700
16701 test_276() {
16702         remote_ost_nodsh && skip "remote OST with nodsh"
16703         local pid
16704
16705         do_facet ost1 "(while true; do \
16706                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
16707                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
16708         pid=$!
16709
16710         for LOOP in $(seq 20); do
16711                 stop ost1
16712                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
16713         done
16714         kill -9 $pid
16715         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
16716                 rm $TMP/sanity_276_pid"
16717 }
16718 run_test 276 "Race between mount and obd_statfs"
16719
16720 cleanup_test_300() {
16721         trap 0
16722         umask $SAVE_UMASK
16723 }
16724 test_striped_dir() {
16725         local mdt_index=$1
16726         local stripe_count
16727         local stripe_index
16728
16729         mkdir -p $DIR/$tdir
16730
16731         SAVE_UMASK=$(umask)
16732         trap cleanup_test_300 RETURN EXIT
16733
16734         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
16735                                                 $DIR/$tdir/striped_dir ||
16736                 error "set striped dir error"
16737
16738         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
16739         [ "$mode" = "755" ] || error "expect 755 got $mode"
16740
16741         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
16742                 error "getdirstripe failed"
16743         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
16744         if [ "$stripe_count" != "2" ]; then
16745                 error "1:stripe_count is $stripe_count, expect 2"
16746         fi
16747         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
16748         if [ "$stripe_count" != "2" ]; then
16749                 error "2:stripe_count is $stripe_count, expect 2"
16750         fi
16751
16752         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
16753         if [ "$stripe_index" != "$mdt_index" ]; then
16754                 error "stripe_index is $stripe_index, expect $mdt_index"
16755         fi
16756
16757         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16758                 error "nlink error after create striped dir"
16759
16760         mkdir $DIR/$tdir/striped_dir/a
16761         mkdir $DIR/$tdir/striped_dir/b
16762
16763         stat $DIR/$tdir/striped_dir/a ||
16764                 error "create dir under striped dir failed"
16765         stat $DIR/$tdir/striped_dir/b ||
16766                 error "create dir under striped dir failed"
16767
16768         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
16769                 error "nlink error after mkdir"
16770
16771         rmdir $DIR/$tdir/striped_dir/a
16772         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
16773                 error "nlink error after rmdir"
16774
16775         rmdir $DIR/$tdir/striped_dir/b
16776         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16777                 error "nlink error after rmdir"
16778
16779         chattr +i $DIR/$tdir/striped_dir
16780         createmany -o $DIR/$tdir/striped_dir/f 10 &&
16781                 error "immutable flags not working under striped dir!"
16782         chattr -i $DIR/$tdir/striped_dir
16783
16784         rmdir $DIR/$tdir/striped_dir ||
16785                 error "rmdir striped dir error"
16786
16787         cleanup_test_300
16788
16789         true
16790 }
16791
16792 test_300a() {
16793         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16794                 skip "skipped for lustre < 2.7.0"
16795         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16796         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16797
16798         test_striped_dir 0 || error "failed on striped dir on MDT0"
16799         test_striped_dir 1 || error "failed on striped dir on MDT0"
16800 }
16801 run_test 300a "basic striped dir sanity test"
16802
16803 test_300b() {
16804         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16805                 skip "skipped for lustre < 2.7.0"
16806         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16807         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16808
16809         local i
16810         local mtime1
16811         local mtime2
16812         local mtime3
16813
16814         test_mkdir $DIR/$tdir || error "mkdir fail"
16815         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16816                 error "set striped dir error"
16817         for i in {0..9}; do
16818                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
16819                 sleep 1
16820                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
16821                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
16822                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
16823                 sleep 1
16824                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
16825                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
16826                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
16827         done
16828         true
16829 }
16830 run_test 300b "check ctime/mtime for striped dir"
16831
16832 test_300c() {
16833         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16834                 skip "skipped for lustre < 2.7.0"
16835         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16836         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16837
16838         local file_count
16839
16840         mkdir -p $DIR/$tdir
16841         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
16842                 error "set striped dir error"
16843
16844         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
16845                 error "chown striped dir failed"
16846
16847         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
16848                 error "create 5k files failed"
16849
16850         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
16851
16852         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
16853
16854         rm -rf $DIR/$tdir
16855 }
16856 run_test 300c "chown && check ls under striped directory"
16857
16858 test_300d() {
16859         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16860                 skip "skipped for lustre < 2.7.0"
16861         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16862         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16863
16864         local stripe_count
16865         local file
16866
16867         mkdir -p $DIR/$tdir
16868         $SETSTRIPE -c 2 $DIR/$tdir
16869
16870         #local striped directory
16871         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16872                 error "set striped dir error"
16873         createmany -o $DIR/$tdir/striped_dir/f 10 ||
16874                 error "create 10 files failed"
16875
16876         #remote striped directory
16877         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
16878                 error "set striped dir error"
16879         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
16880                 error "create 10 files failed"
16881
16882         for file in $(find $DIR/$tdir); do
16883                 stripe_count=$($LFS getstripe -c $file)
16884                 [ $stripe_count -eq 2 ] ||
16885                         error "wrong stripe $stripe_count for $file"
16886         done
16887
16888         rm -rf $DIR/$tdir
16889 }
16890 run_test 300d "check default stripe under striped directory"
16891
16892 test_300e() {
16893         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16894                 skip "Need MDS version at least 2.7.55"
16895         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16896         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16897
16898         local stripe_count
16899         local file
16900
16901         mkdir -p $DIR/$tdir
16902
16903         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16904                 error "set striped dir error"
16905
16906         touch $DIR/$tdir/striped_dir/a
16907         touch $DIR/$tdir/striped_dir/b
16908         touch $DIR/$tdir/striped_dir/c
16909
16910         mkdir $DIR/$tdir/striped_dir/dir_a
16911         mkdir $DIR/$tdir/striped_dir/dir_b
16912         mkdir $DIR/$tdir/striped_dir/dir_c
16913
16914         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
16915                 error "set striped adir under striped dir error"
16916
16917         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
16918                 error "set striped bdir under striped dir error"
16919
16920         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
16921                 error "set striped cdir under striped dir error"
16922
16923         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
16924                 error "rename dir under striped dir fails"
16925
16926         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
16927                 error "rename dir under different stripes fails"
16928
16929         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
16930                 error "rename file under striped dir should succeed"
16931
16932         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
16933                 error "rename dir under striped dir should succeed"
16934
16935         rm -rf $DIR/$tdir
16936 }
16937 run_test 300e "check rename under striped directory"
16938
16939 test_300f() {
16940         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16941         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16942         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16943                 skip "Need MDS version at least 2.7.55"
16944
16945         local stripe_count
16946         local file
16947
16948         rm -rf $DIR/$tdir
16949         mkdir -p $DIR/$tdir
16950
16951         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16952                 error "set striped dir error"
16953
16954         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
16955                 error "set striped dir error"
16956
16957         touch $DIR/$tdir/striped_dir/a
16958         mkdir $DIR/$tdir/striped_dir/dir_a
16959         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
16960                 error "create striped dir under striped dir fails"
16961
16962         touch $DIR/$tdir/striped_dir1/b
16963         mkdir $DIR/$tdir/striped_dir1/dir_b
16964         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
16965                 error "create striped dir under striped dir fails"
16966
16967         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
16968                 error "rename dir under different striped dir should fail"
16969
16970         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
16971                 error "rename striped dir under diff striped dir should fail"
16972
16973         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
16974                 error "rename file under diff striped dirs fails"
16975
16976         rm -rf $DIR/$tdir
16977 }
16978 run_test 300f "check rename cross striped directory"
16979
16980 test_300_check_default_striped_dir()
16981 {
16982         local dirname=$1
16983         local default_count=$2
16984         local default_index=$3
16985         local stripe_count
16986         local stripe_index
16987         local dir_stripe_index
16988         local dir
16989
16990         echo "checking $dirname $default_count $default_index"
16991         $LFS setdirstripe -D -c $default_count -i $default_index \
16992                                 -t all_char $DIR/$tdir/$dirname ||
16993                 error "set default stripe on striped dir error"
16994         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
16995         [ $stripe_count -eq $default_count ] ||
16996                 error "expect $default_count get $stripe_count for $dirname"
16997
16998         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
16999         [ $stripe_index -eq $default_index ] ||
17000                 error "expect $default_index get $stripe_index for $dirname"
17001
17002         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17003                                                 error "create dirs failed"
17004
17005         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17006         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17007         for dir in $(find $DIR/$tdir/$dirname/*); do
17008                 stripe_count=$($LFS getdirstripe -c $dir)
17009                 [ $stripe_count -eq $default_count ] ||
17010                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17011                 error "stripe count $default_count != $stripe_count for $dir"
17012
17013                 stripe_index=$($LFS getdirstripe -i $dir)
17014                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17015                         error "$stripe_index != $default_index for $dir"
17016
17017                 #check default stripe
17018                 stripe_count=$($LFS getdirstripe -D -c $dir)
17019                 [ $stripe_count -eq $default_count ] ||
17020                 error "default count $default_count != $stripe_count for $dir"
17021
17022                 stripe_index=$($LFS getdirstripe -D -i $dir)
17023                 [ $stripe_index -eq $default_index ] ||
17024                 error "default index $default_index != $stripe_index for $dir"
17025         done
17026         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17027 }
17028
17029 test_300g() {
17030         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17031         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17032                 skip "Need MDS version at least 2.7.55"
17033
17034         local dir
17035         local stripe_count
17036         local stripe_index
17037
17038         mkdir $DIR/$tdir
17039         mkdir $DIR/$tdir/normal_dir
17040
17041         #Checking when client cache stripe index
17042         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
17043         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
17044                 error "create striped_dir failed"
17045
17046         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
17047                 error "create dir0 fails"
17048         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
17049         [ $stripe_index -eq 0 ] ||
17050                 error "dir0 expect index 0 got $stripe_index"
17051
17052         mkdir $DIR/$tdir/striped_dir/dir1 ||
17053                 error "create dir1 fails"
17054         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
17055         [ $stripe_index -eq 1 ] ||
17056                 error "dir1 expect index 1 got $stripe_index"
17057
17058         #check default stripe count/stripe index
17059         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
17060         test_300_check_default_striped_dir normal_dir 1 0
17061         test_300_check_default_striped_dir normal_dir 2 1
17062         test_300_check_default_striped_dir normal_dir 2 -1
17063
17064         #delete default stripe information
17065         echo "delete default stripeEA"
17066         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
17067                 error "set default stripe on striped dir error"
17068
17069         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
17070         for dir in $(find $DIR/$tdir/normal_dir/*); do
17071                 stripe_count=$($LFS getdirstripe -c $dir)
17072                 [ $stripe_count -eq 0 ] ||
17073                         error "expect 1 get $stripe_count for $dir"
17074                 stripe_index=$($LFS getdirstripe -i $dir)
17075                 [ $stripe_index -eq 0 ] ||
17076                         error "expect 0 get $stripe_index for $dir"
17077         done
17078 }
17079 run_test 300g "check default striped directory for normal directory"
17080
17081 test_300h() {
17082         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17083         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17084                 skip "Need MDS version at least 2.7.55"
17085
17086         local dir
17087         local stripe_count
17088
17089         mkdir $DIR/$tdir
17090         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17091                 error "set striped dir error"
17092
17093         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
17094         test_300_check_default_striped_dir striped_dir 1 0
17095         test_300_check_default_striped_dir striped_dir 2 1
17096         test_300_check_default_striped_dir striped_dir 2 -1
17097
17098         #delete default stripe information
17099         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
17100                 error "set default stripe on striped dir error"
17101
17102         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
17103         for dir in $(find $DIR/$tdir/striped_dir/*); do
17104                 stripe_count=$($LFS getdirstripe -c $dir)
17105                 [ $stripe_count -eq 0 ] ||
17106                         error "expect 1 get $stripe_count for $dir"
17107         done
17108 }
17109 run_test 300h "check default striped directory for striped directory"
17110
17111 test_300i() {
17112         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17113         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17114         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17115                 skip "Need MDS version at least 2.7.55"
17116
17117         local stripe_count
17118         local file
17119
17120         mkdir $DIR/$tdir
17121
17122         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17123                 error "set striped dir error"
17124
17125         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17126                 error "create files under striped dir failed"
17127
17128         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
17129                 error "set striped hashdir error"
17130
17131         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
17132                 error "create dir0 under hash dir failed"
17133         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
17134                 error "create dir1 under hash dir failed"
17135
17136         # unfortunately, we need to umount to clear dir layout cache for now
17137         # once we fully implement dir layout, we can drop this
17138         umount_client $MOUNT || error "umount failed"
17139         mount_client $MOUNT || error "mount failed"
17140
17141         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
17142         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
17143         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
17144
17145         #set the stripe to be unknown hash type
17146         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
17147         $LCTL set_param fail_loc=0x1901
17148         for ((i = 0; i < 10; i++)); do
17149                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
17150                         error "stat f-$i failed"
17151                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
17152         done
17153
17154         touch $DIR/$tdir/striped_dir/f0 &&
17155                 error "create under striped dir with unknown hash should fail"
17156
17157         $LCTL set_param fail_loc=0
17158
17159         umount_client $MOUNT || error "umount failed"
17160         mount_client $MOUNT || error "mount failed"
17161
17162         return 0
17163 }
17164 run_test 300i "client handle unknown hash type striped directory"
17165
17166 test_300j() {
17167         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17168         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17169         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17170                 skip "Need MDS version at least 2.7.55"
17171
17172         local stripe_count
17173         local file
17174
17175         mkdir $DIR/$tdir
17176
17177         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
17178         $LCTL set_param fail_loc=0x1702
17179         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17180                 error "set striped dir error"
17181
17182         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17183                 error "create files under striped dir failed"
17184
17185         $LCTL set_param fail_loc=0
17186
17187         rm -rf $DIR/$tdir || error "unlink striped dir fails"
17188
17189         return 0
17190 }
17191 run_test 300j "test large update record"
17192
17193 test_300k() {
17194         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17195         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17196         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17197                 skip "Need MDS version at least 2.7.55"
17198
17199         local stripe_count
17200         local file
17201
17202         mkdir $DIR/$tdir
17203
17204         #define OBD_FAIL_LARGE_STRIPE   0x1703
17205         $LCTL set_param fail_loc=0x1703
17206         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
17207                 error "set striped dir error"
17208         $LCTL set_param fail_loc=0
17209
17210         $LFS getdirstripe $DIR/$tdir/striped_dir ||
17211                 error "getstripeddir fails"
17212         rm -rf $DIR/$tdir/striped_dir ||
17213                 error "unlink striped dir fails"
17214
17215         return 0
17216 }
17217 run_test 300k "test large striped directory"
17218
17219 test_300l() {
17220         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17221         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17222         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17223                 skip "Need MDS version at least 2.7.55"
17224
17225         local stripe_index
17226
17227         test_mkdir -p $DIR/$tdir/striped_dir
17228         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
17229                         error "chown $RUNAS_ID failed"
17230         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
17231                 error "set default striped dir failed"
17232
17233         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
17234         $LCTL set_param fail_loc=0x80000158
17235         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
17236
17237         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
17238         [ $stripe_index -eq 1 ] ||
17239                 error "expect 1 get $stripe_index for $dir"
17240 }
17241 run_test 300l "non-root user to create dir under striped dir with stale layout"
17242
17243 test_300m() {
17244         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17245         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
17246         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17247                 skip "Need MDS version at least 2.7.55"
17248
17249         mkdir -p $DIR/$tdir/striped_dir
17250         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
17251                 error "set default stripes dir error"
17252
17253         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
17254
17255         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
17256         [ $stripe_count -eq 0 ] ||
17257                         error "expect 0 get $stripe_count for a"
17258
17259         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
17260                 error "set default stripes dir error"
17261
17262         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
17263
17264         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
17265         [ $stripe_count -eq 0 ] ||
17266                         error "expect 0 get $stripe_count for b"
17267
17268         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
17269                 error "set default stripes dir error"
17270
17271         mkdir $DIR/$tdir/striped_dir/c &&
17272                 error "default stripe_index is invalid, mkdir c should fails"
17273
17274         rm -rf $DIR/$tdir || error "rmdir fails"
17275 }
17276 run_test 300m "setstriped directory on single MDT FS"
17277
17278 cleanup_300n() {
17279         local list=$(comma_list $(mdts_nodes))
17280
17281         trap 0
17282         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17283 }
17284
17285 test_300n() {
17286         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17287         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17288         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17289                 skip "Need MDS version at least 2.7.55"
17290         remote_mds_nodsh && skip "remote MDS with nodsh"
17291
17292         local stripe_index
17293         local list=$(comma_list $(mdts_nodes))
17294
17295         trap cleanup_300n RETURN EXIT
17296         mkdir -p $DIR/$tdir
17297         chmod 777 $DIR/$tdir
17298         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
17299                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17300                 error "create striped dir succeeds with gid=0"
17301
17302         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17303         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
17304                 error "create striped dir fails with gid=-1"
17305
17306         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17307         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
17308                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17309                 error "set default striped dir succeeds with gid=0"
17310
17311
17312         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17313         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
17314                 error "set default striped dir fails with gid=-1"
17315
17316
17317         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17318         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
17319                                         error "create test_dir fails"
17320         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
17321                                         error "create test_dir1 fails"
17322         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
17323                                         error "create test_dir2 fails"
17324         cleanup_300n
17325 }
17326 run_test 300n "non-root user to create dir under striped dir with default EA"
17327
17328 test_300o() {
17329         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17330         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17331         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17332                 skip "Need MDS version at least 2.7.55"
17333
17334         local numfree1
17335         local numfree2
17336
17337         mkdir -p $DIR/$tdir
17338
17339         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
17340         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
17341         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
17342                 skip "not enough free inodes $numfree1 $numfree2"
17343         fi
17344
17345         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
17346         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
17347         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
17348                 skip "not enough free space $numfree1 $numfree2"
17349         fi
17350
17351         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
17352                 error "setdirstripe fails"
17353
17354         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
17355                 error "create dirs fails"
17356
17357         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
17358         ls $DIR/$tdir/striped_dir > /dev/null ||
17359                 error "ls striped dir fails"
17360         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
17361                 error "unlink big striped dir fails"
17362 }
17363 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
17364
17365 test_300p() {
17366         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17367         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17368         remote_mds_nodsh && skip "remote MDS with nodsh"
17369
17370         mkdir -p $DIR/$tdir
17371
17372         #define OBD_FAIL_OUT_ENOSPC     0x1704
17373         do_facet mds2 lctl set_param fail_loc=0x80001704
17374         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
17375                  && error "create striped directory should fail"
17376
17377         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
17378
17379         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
17380         true
17381 }
17382 run_test 300p "create striped directory without space"
17383
17384 test_300q() {
17385         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17386         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17387
17388         local fd=$(free_fd)
17389         local cmd="exec $fd<$tdir"
17390         cd $DIR
17391         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
17392         eval $cmd
17393         cmd="exec $fd<&-"
17394         trap "eval $cmd" EXIT
17395         cd $tdir || error "cd $tdir fails"
17396         rmdir  ../$tdir || error "rmdir $tdir fails"
17397         mkdir local_dir && error "create dir succeeds"
17398         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
17399         eval $cmd
17400         return 0
17401 }
17402 run_test 300q "create remote directory under orphan directory"
17403
17404 prepare_remote_file() {
17405         mkdir $DIR/$tdir/src_dir ||
17406                 error "create remote source failed"
17407
17408         cp /etc/hosts $DIR/$tdir/src_dir/a ||
17409                  error "cp to remote source failed"
17410         touch $DIR/$tdir/src_dir/a
17411
17412         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
17413                 error "create remote target dir failed"
17414
17415         touch $DIR/$tdir/tgt_dir/b
17416
17417         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
17418                 error "rename dir cross MDT failed!"
17419
17420         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
17421                 error "src_child still exists after rename"
17422
17423         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
17424                 error "missing file(a) after rename"
17425
17426         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
17427                 error "diff after rename"
17428 }
17429
17430 test_310a() {
17431         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
17432         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17433
17434         local remote_file=$DIR/$tdir/tgt_dir/b
17435
17436         mkdir -p $DIR/$tdir
17437
17438         prepare_remote_file || error "prepare remote file failed"
17439
17440         #open-unlink file
17441         $OPENUNLINK $remote_file $remote_file ||
17442                 error "openunlink $remote_file failed"
17443         $CHECKSTAT -a $remote_file || error "$remote_file exists"
17444 }
17445 run_test 310a "open unlink remote file"
17446
17447 test_310b() {
17448         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
17449         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17450
17451         local remote_file=$DIR/$tdir/tgt_dir/b
17452
17453         mkdir -p $DIR/$tdir
17454
17455         prepare_remote_file || error "prepare remote file failed"
17456
17457         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17458         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
17459         $CHECKSTAT -t file $remote_file || error "check file failed"
17460 }
17461 run_test 310b "unlink remote file with multiple links while open"
17462
17463 test_310c() {
17464         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17465         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
17466
17467         local remote_file=$DIR/$tdir/tgt_dir/b
17468
17469         mkdir -p $DIR/$tdir
17470
17471         prepare_remote_file || error "prepare remote file failed"
17472
17473         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17474         multiop_bg_pause $remote_file O_uc ||
17475                         error "mulitop failed for remote file"
17476         MULTIPID=$!
17477         $MULTIOP $DIR/$tfile Ouc
17478         kill -USR1 $MULTIPID
17479         wait $MULTIPID
17480 }
17481 run_test 310c "open-unlink remote file with multiple links"
17482
17483 #LU-4825
17484 test_311() {
17485         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17486         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
17487         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
17488                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
17489         remote_mds_nodsh && skip "remote MDS with nodsh"
17490
17491         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
17492
17493         mkdir -p $DIR/$tdir
17494         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
17495         createmany -o $DIR/$tdir/$tfile. 1000
17496
17497         # statfs data is not real time, let's just calculate it
17498         old_iused=$((old_iused + 1000))
17499
17500         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
17501                         osp.*OST0000*MDT0000.create_count")
17502         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
17503                                 osp.*OST0000*MDT0000.max_create_count")
17504         for idx in $(seq $MDSCOUNT); do
17505                 do_facet mds$idx "lctl set_param -n \
17506                         osp.*OST0000*MDT000?.max_create_count=0"
17507         done
17508
17509         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
17510         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
17511         [ $index -ne 0 ] || error "$tfile stripe index is 0"
17512
17513         unlinkmany $DIR/$tdir/$tfile. 1000
17514
17515         for idx in $(seq $MDSCOUNT); do
17516                 do_facet mds$idx "lctl set_param -n \
17517                         osp.*OST0000*MDT000?.max_create_count=$max_count"
17518                 do_facet mds$idx "lctl set_param -n \
17519                         osp.*OST0000*MDT000?.create_count=$count"
17520         done
17521
17522         local new_iused
17523         for i in $(seq 120); do
17524                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
17525                 # system may be too busy to destroy all objs in time, use
17526                 # a somewhat small value to not fail autotest
17527                 [ $((old_iused - new_iused)) -gt 400 ] && break
17528                 sleep 1
17529         done
17530
17531         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
17532         [ $((old_iused - new_iused)) -gt 400 ] ||
17533                 error "objs not destroyed after unlink"
17534 }
17535 run_test 311 "disable OSP precreate, and unlink should destroy objs"
17536
17537 zfs_oid_to_objid()
17538 {
17539         local ost=$1
17540         local objid=$2
17541
17542         local vdevdir=$(dirname $(facet_vdevice $ost))
17543         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
17544         local zfs_zapid=$(do_facet $ost $cmd |
17545                           grep -w "/O/0/d$((objid%32))" -C 5 |
17546                           awk '/Object/{getline; print $1}')
17547         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
17548                           awk "/$objid = /"'{printf $3}')
17549
17550         echo $zfs_objid
17551 }
17552
17553 zfs_object_blksz() {
17554         local ost=$1
17555         local objid=$2
17556
17557         local vdevdir=$(dirname $(facet_vdevice $ost))
17558         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
17559         local blksz=$(do_facet $ost $cmd $objid |
17560                       awk '/dblk/{getline; printf $4}')
17561
17562         case "${blksz: -1}" in
17563                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
17564                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
17565                 *) ;;
17566         esac
17567
17568         echo $blksz
17569 }
17570
17571 test_312() { # LU-4856
17572         remote_ost_nodsh && skip "remote OST with nodsh"
17573         [ $(facet_fstype ost1) = "zfs" ] ||
17574                 skip_env "the test only applies to zfs"
17575
17576         local max_blksz=$(do_facet ost1 \
17577                           $ZFS get -p recordsize $(facet_device ost1) |
17578                           awk '!/VALUE/{print $3}')
17579         local min_blksz=$(getconf PAGE_SIZE)
17580
17581         # to make life a little bit easier
17582         $LFS mkdir -c 1 -i 0 $DIR/$tdir
17583         $LFS setstripe -c 1 -i 0 $DIR/$tdir
17584
17585         local tf=$DIR/$tdir/$tfile
17586         touch $tf
17587         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17588
17589         # Get ZFS object id
17590         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17591
17592         # block size change by sequential over write
17593         local blksz
17594         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
17595                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
17596
17597                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17598                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
17599         done
17600         rm -f $tf
17601
17602         # block size change by sequential append write
17603         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
17604         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17605         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17606
17607         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
17608                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
17609                         oflag=sync conv=notrunc
17610
17611                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17612                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
17613                         error "blksz error, actual $blksz, "    \
17614                                 "expected: 2 * $count * $min_blksz"
17615         done
17616         rm -f $tf
17617
17618         # random write
17619         touch $tf
17620         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17621         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17622
17623         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
17624         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17625         [ $blksz -eq $min_blksz ] ||
17626                 error "blksz error: $blksz, expected: $min_blksz"
17627
17628         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
17629         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17630         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
17631
17632         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
17633         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17634         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
17635 }
17636 run_test 312 "make sure ZFS adjusts its block size by write pattern"
17637
17638 test_313() {
17639         remote_ost_nodsh && skip "remote OST with nodsh"
17640
17641         local file=$DIR/$tfile
17642         rm -f $file
17643         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
17644
17645         # define OBD_FAIL_TGT_RCVD_EIO           0x720
17646         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17647         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
17648                 error "write should failed"
17649         do_facet ost1 "$LCTL set_param fail_loc=0"
17650         rm -f $file
17651 }
17652 run_test 313 "io should fail after last_rcvd update fail"
17653
17654 test_314() {
17655         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
17656
17657         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
17658         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17659         rm -f $DIR/$tfile
17660         wait_delete_completed
17661         do_facet ost1 "$LCTL set_param fail_loc=0"
17662 }
17663 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
17664
17665 test_315() { # LU-618
17666         local file=$DIR/$tfile
17667         rm -f $file
17668
17669         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4096000c
17670         $MULTIOP $file oO_RDONLY:r4096000_c &
17671         PID=$!
17672
17673         sleep 2
17674
17675         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
17676         kill -USR1 $PID
17677
17678         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
17679         rm -f $file
17680 }
17681 run_test 315 "read should be accounted"
17682
17683 test_316() {
17684         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
17685         large_xattr_enabled || skip_env "large_xattr disabled"
17686
17687         rm -rf $DIR/$tdir/d
17688         mkdir -p $DIR/$tdir/d
17689         chown nobody $DIR/$tdir/d
17690         touch $DIR/$tdir/d/file
17691
17692         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
17693 }
17694 run_test 316 "lfs mv"
17695
17696 test_fake_rw() {
17697         local read_write=$1
17698         if [ "$read_write" = "write" ]; then
17699                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
17700         elif [ "$read_write" = "read" ]; then
17701                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
17702         else
17703                 error "argument error"
17704         fi
17705
17706         # turn off debug for performance testing
17707         local saved_debug=$($LCTL get_param -n debug)
17708         $LCTL set_param debug=0
17709
17710         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
17711
17712         # get ost1 size - lustre-OST0000
17713         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
17714         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
17715         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
17716
17717         if [ "$read_write" = "read" ]; then
17718                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
17719         fi
17720
17721         local start_time=$(date +%s.%N)
17722         $dd_cmd bs=1M count=$blocks oflag=sync ||
17723                 error "real dd $read_write error"
17724         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
17725
17726         if [ "$read_write" = "write" ]; then
17727                 rm -f $DIR/$tfile
17728         fi
17729
17730         # define OBD_FAIL_OST_FAKE_RW           0x238
17731         do_facet ost1 $LCTL set_param fail_loc=0x238
17732
17733         local start_time=$(date +%s.%N)
17734         $dd_cmd bs=1M count=$blocks oflag=sync ||
17735                 error "fake dd $read_write error"
17736         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
17737
17738         if [ "$read_write" = "write" ]; then
17739                 # verify file size
17740                 cancel_lru_locks osc
17741                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
17742                         error "$tfile size not $blocks MB"
17743         fi
17744         do_facet ost1 $LCTL set_param fail_loc=0
17745
17746         echo "fake $read_write $duration_fake vs. normal $read_write" \
17747                 "$duration in seconds"
17748         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
17749                 error_not_in_vm "fake write is slower"
17750
17751         $LCTL set_param -n debug="$saved_debug"
17752         rm -f $DIR/$tfile
17753 }
17754 test_399a() { # LU-7655 for OST fake write
17755         remote_ost_nodsh && skip "remote OST with nodsh"
17756
17757         test_fake_rw write
17758 }
17759 run_test 399a "fake write should not be slower than normal write"
17760
17761 test_399b() { # LU-8726 for OST fake read
17762         remote_ost_nodsh && skip "remote OST with nodsh"
17763         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
17764                 skip_env "ldiskfs only test"
17765         fi
17766
17767         test_fake_rw read
17768 }
17769 run_test 399b "fake read should not be slower than normal read"
17770
17771 test_400a() { # LU-1606, was conf-sanity test_74
17772         if ! which $CC > /dev/null 2>&1; then
17773                 skip_env "$CC is not installed"
17774         fi
17775
17776         local extra_flags=''
17777         local out=$TMP/$tfile
17778         local prefix=/usr/include/lustre
17779         local prog
17780
17781         if ! [[ -d $prefix ]]; then
17782                 # Assume we're running in tree and fixup the include path.
17783                 extra_flags+=" -I$LUSTRE/include"
17784                 extra_flags+=" -L$LUSTRE/utils"
17785         fi
17786
17787         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
17788                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
17789                         error "client api broken"
17790         done
17791         rm -f $out
17792 }
17793 run_test 400a "Lustre client api program can compile and link"
17794
17795 test_400b() { # LU-1606, LU-5011
17796         local header
17797         local out=$TMP/$tfile
17798         local prefix=/usr/include/linux/lustre
17799
17800         # We use a hard coded prefix so that this test will not fail
17801         # when run in tree. There are headers in lustre/include/lustre/
17802         # that are not packaged (like lustre_idl.h) and have more
17803         # complicated include dependencies (like config.h and lnet/types.h).
17804         # Since this test about correct packaging we just skip them when
17805         # they don't exist (see below) rather than try to fixup cppflags.
17806
17807         if ! which $CC > /dev/null 2>&1; then
17808                 skip_env "$CC is not installed"
17809         fi
17810
17811         for header in $prefix/*.h; do
17812                 if ! [[ -f "$header" ]]; then
17813                         continue
17814                 fi
17815
17816                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
17817                         continue # lustre_ioctl.h is internal header
17818                 fi
17819
17820                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
17821                         error "cannot compile '$header'"
17822         done
17823         rm -f $out
17824 }
17825 run_test 400b "packaged headers can be compiled"
17826
17827 test_401a() { #LU-7437
17828         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
17829         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
17830
17831         #count the number of parameters by "list_param -R"
17832         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
17833         #count the number of parameters by listing proc files
17834         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
17835         echo "proc_dirs='$proc_dirs'"
17836         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
17837         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
17838                       sort -u | wc -l)
17839
17840         [ $params -eq $procs ] ||
17841                 error "found $params parameters vs. $procs proc files"
17842
17843         # test the list_param -D option only returns directories
17844         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
17845         #count the number of parameters by listing proc directories
17846         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
17847                 sort -u | wc -l)
17848
17849         [ $params -eq $procs ] ||
17850                 error "found $params parameters vs. $procs proc files"
17851 }
17852 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
17853
17854 test_401b() {
17855         local save=$($LCTL get_param -n jobid_var)
17856         local tmp=testing
17857
17858         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
17859                 error "no error returned when setting bad parameters"
17860
17861         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
17862         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
17863
17864         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
17865         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
17866         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
17867 }
17868 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
17869
17870 test_401c() {
17871         local jobid_var_old=$($LCTL get_param -n jobid_var)
17872         local jobid_var_new
17873
17874         $LCTL set_param jobid_var= &&
17875                 error "no error returned for 'set_param a='"
17876
17877         jobid_var_new=$($LCTL get_param -n jobid_var)
17878         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17879                 error "jobid_var was changed by setting without value"
17880
17881         $LCTL set_param jobid_var &&
17882                 error "no error returned for 'set_param a'"
17883
17884         jobid_var_new=$($LCTL get_param -n jobid_var)
17885         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17886                 error "jobid_var was changed by setting without value"
17887 }
17888 run_test 401c "Verify 'lctl set_param' without value fails in either format."
17889
17890 test_401d() {
17891         local jobid_var_old=$($LCTL get_param -n jobid_var)
17892         local jobid_var_new
17893         local new_value="foo=bar"
17894
17895         $LCTL set_param jobid_var=$new_value ||
17896                 error "'set_param a=b' did not accept a value containing '='"
17897
17898         jobid_var_new=$($LCTL get_param -n jobid_var)
17899         [[ "$jobid_var_new" == "$new_value" ]] ||
17900                 error "'set_param a=b' failed on a value containing '='"
17901
17902         # Reset the jobid_var to test the other format
17903         $LCTL set_param jobid_var=$jobid_var_old
17904         jobid_var_new=$($LCTL get_param -n jobid_var)
17905         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17906                 error "failed to reset jobid_var"
17907
17908         $LCTL set_param jobid_var $new_value ||
17909                 error "'set_param a b' did not accept a value containing '='"
17910
17911         jobid_var_new=$($LCTL get_param -n jobid_var)
17912         [[ "$jobid_var_new" == "$new_value" ]] ||
17913                 error "'set_param a b' failed on a value containing '='"
17914
17915         $LCTL set_param jobid_var $jobid_var_old
17916         jobid_var_new=$($LCTL get_param -n jobid_var)
17917         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17918                 error "failed to reset jobid_var"
17919 }
17920 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
17921
17922 test_402() {
17923         local server_version=$(lustre_version_code $SINGLEMDS)
17924         [[ $server_version -ge $(version_code 2.7.66) ]] ||
17925         [[ $server_version -ge $(version_code 2.7.18.4) &&
17926                 $server_version -lt $(version_code 2.7.50) ]] ||
17927         [[ $server_version -ge $(version_code 2.7.2) &&
17928                 $server_version -lt $(version_code 2.7.11) ]] ||
17929                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
17930         remote_mds_nodsh && skip "remote MDS with nodsh"
17931
17932         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
17933 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
17934         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
17935         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
17936                 echo "Touch failed - OK"
17937 }
17938 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
17939
17940 test_403() {
17941         local file1=$DIR/$tfile.1
17942         local file2=$DIR/$tfile.2
17943         local tfile=$TMP/$tfile
17944
17945         rm -f $file1 $file2 $tfile
17946
17947         touch $file1
17948         ln $file1 $file2
17949
17950         # 30 sec OBD_TIMEOUT in ll_getattr()
17951         # right before populating st_nlink
17952         $LCTL set_param fail_loc=0x80001409
17953         stat -c %h $file1 > $tfile &
17954
17955         # create an alias, drop all locks and reclaim the dentry
17956         < $file2
17957         cancel_lru_locks mdc
17958         cancel_lru_locks osc
17959         sysctl -w vm.drop_caches=2
17960
17961         wait
17962
17963         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
17964
17965         rm -f $tfile $file1 $file2
17966 }
17967 run_test 403 "i_nlink should not drop to zero due to aliasing"
17968
17969 test_404() { # LU-6601
17970         local server_version=$(lustre_version_code $SINGLEMDS)
17971         [[ $server_version -ge $(version_code 2.8.53) ]] ||
17972                 skip "Need server version newer than 2.8.52"
17973         remote_mds_nodsh && skip "remote MDS with nodsh"
17974
17975         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
17976                 awk '/osp .*-osc-MDT/ { print $4}')
17977
17978         local osp
17979         for osp in $mosps; do
17980                 echo "Deactivate: " $osp
17981                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
17982                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17983                         awk -vp=$osp '$4 == p { print $2 }')
17984                 [ $stat = IN ] || {
17985                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17986                         error "deactivate error"
17987                 }
17988                 echo "Activate: " $osp
17989                 do_facet $SINGLEMDS $LCTL --device %$osp activate
17990                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17991                         awk -vp=$osp '$4 == p { print $2 }')
17992                 [ $stat = UP ] || {
17993                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17994                         error "activate error"
17995                 }
17996         done
17997 }
17998 run_test 404 "validate manual {de}activated works properly for OSPs"
17999
18000 test_405() {
18001         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
18002         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
18003                 skip "Layout swap lock is not supported"
18004         check_swap_layouts_support
18005
18006         test_mkdir $DIR/$tdir
18007         swap_lock_test -d $DIR/$tdir ||
18008                 error "One layout swap locked test failed"
18009 }
18010 run_test 405 "Various layout swap lock tests"
18011
18012 test_406() {
18013         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18014         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
18015         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
18016         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18017         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
18018                 skip "Need MDS version at least 2.8.50"
18019
18020         local def_stripe_size=$($LFS getstripe -S $MOUNT)
18021         local test_pool=$TESTNAME
18022
18023         if ! combined_mgs_mds ; then
18024                 mount_mgs_client
18025         fi
18026         pool_add $test_pool || error "pool_add failed"
18027         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
18028                 error "pool_add_targets failed"
18029
18030         save_layout_restore_at_exit $MOUNT
18031
18032         # parent set default stripe count only, child will stripe from both
18033         # parent and fs default
18034         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
18035                 error "setstripe $MOUNT failed"
18036         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
18037         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
18038         for i in $(seq 10); do
18039                 local f=$DIR/$tdir/$tfile.$i
18040                 touch $f || error "touch failed"
18041                 local count=$($LFS getstripe -c $f)
18042                 [ $count -eq $OSTCOUNT ] ||
18043                         error "$f stripe count $count != $OSTCOUNT"
18044                 local offset=$($LFS getstripe -i $f)
18045                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
18046                 local size=$($LFS getstripe -S $f)
18047                 [ $size -eq $((def_stripe_size * 2)) ] ||
18048                         error "$f stripe size $size != $((def_stripe_size * 2))"
18049                 local pool=$($LFS getstripe -p $f)
18050                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
18051         done
18052
18053         # change fs default striping, delete parent default striping, now child
18054         # will stripe from new fs default striping only
18055         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
18056                 error "change $MOUNT default stripe failed"
18057         $LFS setstripe -c 0 $DIR/$tdir ||
18058                 error "delete $tdir default stripe failed"
18059         for i in $(seq 11 20); do
18060                 local f=$DIR/$tdir/$tfile.$i
18061                 touch $f || error "touch $f failed"
18062                 local count=$($LFS getstripe -c $f)
18063                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
18064                 local offset=$($LFS getstripe -i $f)
18065                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
18066                 local size=$($LFS getstripe -S $f)
18067                 [ $size -eq $def_stripe_size ] ||
18068                         error "$f stripe size $size != $def_stripe_size"
18069                 local pool=$($LFS getstripe -p $f)
18070                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
18071         done
18072
18073         unlinkmany $DIR/$tdir/$tfile. 1 20
18074
18075         local f=$DIR/$tdir/$tfile
18076         pool_remove_all_targets $test_pool $f
18077         pool_remove $test_pool $f
18078
18079         if ! combined_mgs_mds ; then
18080                 umount_mgs_client
18081         fi
18082 }
18083 run_test 406 "DNE support fs default striping"
18084
18085 test_407() {
18086         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18087         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
18088                 skip "Need MDS version at least 2.8.55"
18089         remote_mds_nodsh && skip "remote MDS with nodsh"
18090
18091         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
18092                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
18093         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
18094                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
18095         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
18096
18097         #define OBD_FAIL_DT_TXN_STOP    0x2019
18098         for idx in $(seq $MDSCOUNT); do
18099                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
18100         done
18101         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
18102         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
18103                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
18104         true
18105 }
18106 run_test 407 "transaction fail should cause operation fail"
18107
18108 test_408() {
18109         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
18110
18111         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
18112         lctl set_param fail_loc=0x8000040a
18113         # let ll_prepare_partial_page() fail
18114         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
18115
18116         rm -f $DIR/$tfile
18117
18118         # create at least 100 unused inodes so that
18119         # shrink_icache_memory(0) should not return 0
18120         touch $DIR/$tfile-{0..100}
18121         rm -f $DIR/$tfile-{0..100}
18122         sync
18123
18124         echo 2 > /proc/sys/vm/drop_caches
18125 }
18126 run_test 408 "drop_caches should not hang due to page leaks"
18127
18128 test_409()
18129 {
18130         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18131         check_mount_and_prep
18132
18133         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
18134         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
18135         touch $DIR/$tdir/guard || error "(2) Fail to create"
18136
18137         local PREFIX=$(str_repeat 'A' 128)
18138         echo "Create 1K hard links start at $(date)"
18139         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18140                 error "(3) Fail to hard link"
18141
18142         echo "Links count should be right although linkEA overflow"
18143         stat $DIR/$tdir/guard || error "(4) Fail to stat"
18144         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
18145         [ $linkcount -eq 1001 ] ||
18146                 error "(5) Unexpected hard links count: $linkcount"
18147
18148         echo "List all links start at $(date)"
18149         ls -l $DIR/$tdir/foo > /dev/null ||
18150                 error "(6) Fail to list $DIR/$tdir/foo"
18151
18152         echo "Unlink hard links start at $(date)"
18153         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18154                 error "(7) Fail to unlink"
18155 }
18156 run_test 409 "Large amount of cross-MDTs hard links on the same file"
18157
18158 test_410()
18159 {
18160         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
18161                 skip "Need client version at least 2.9.59"
18162
18163         # Create a file, and stat it from the kernel
18164         local testfile=$DIR/$tfile
18165         touch $testfile
18166
18167         local run_id=$RANDOM
18168         local my_ino=$(stat --format "%i" $testfile)
18169
18170         # Try to insert the module. This will always fail as the
18171         # module is designed to not be inserted.
18172         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
18173             &> /dev/null
18174
18175         # Anything but success is a test failure
18176         dmesg | grep -q \
18177             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
18178             error "no inode match"
18179 }
18180 run_test 410 "Test inode number returned from kernel thread"
18181
18182 cleanup_test411_cgroup() {
18183         trap 0
18184         rmdir "$1"
18185 }
18186
18187 test_411() {
18188         local cg_basedir=/sys/fs/cgroup/memory
18189         # LU-9966
18190         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
18191                 skip "no setup for cgroup"
18192
18193         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
18194                 error "test file creation failed"
18195         cancel_lru_locks osc
18196
18197         # Create a very small memory cgroup to force a slab allocation error
18198         local cgdir=$cg_basedir/osc_slab_alloc
18199         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
18200         trap "cleanup_test411_cgroup $cgdir" EXIT
18201         echo 2M > $cgdir/memory.kmem.limit_in_bytes
18202         echo 1M > $cgdir/memory.limit_in_bytes
18203
18204         # Should not LBUG, just be killed by oom-killer
18205         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
18206                 error "fail to trigger a memory allocation error"
18207
18208         cleanup_test411_cgroup $cgdir
18209
18210         return 0
18211 }
18212 run_test 411 "Slab allocation error with cgroup does not LBUG"
18213
18214 test_412() {
18215         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18216         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18217                 skip "Need server version at least 2.10.55"
18218         fi
18219
18220         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
18221                 error "mkdir failed"
18222         $LFS getdirstripe $DIR/$tdir
18223         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
18224         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
18225                 error "expect $((MDSCOUT - 1)) get $stripe_index"
18226         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
18227         [ $stripe_count -eq 2 ] ||
18228                 error "expect 2 get $stripe_count"
18229 }
18230 run_test 412 "mkdir on specific MDTs"
18231
18232 test_413() {
18233         [ $MDSCOUNT -lt 2 ] &&
18234                 skip "We need at least 2 MDTs for this test"
18235
18236         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18237                 skip "Need server version at least 2.10.55"
18238         fi
18239
18240         mkdir $DIR/$tdir || error "mkdir failed"
18241
18242         # find MDT that is the most full
18243         local max=$($LFS df | grep MDT |
18244                 awk 'BEGIN { a=0 }
18245                         { sub("%", "", $5)
18246                           if (0+$5 >= a)
18247                           {
18248                                 a = $5
18249                                 b = $6
18250                           }
18251                         }
18252                      END { split(b, c, ":")
18253                            sub("]", "", c[2])
18254                            print c[2]
18255                          }')
18256
18257         for i in $(seq $((MDSCOUNT - 1))); do
18258                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
18259                         error "mkdir d$i failed"
18260                 $LFS getdirstripe $DIR/$tdir/d$i
18261                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
18262                 [ $stripe_index -ne $max ] ||
18263                         error "don't expect $max"
18264         done
18265 }
18266 run_test 413 "mkdir on less full MDTs"
18267
18268 test_414() {
18269 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
18270         $LCTL set_param fail_loc=0x80000521
18271         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
18272         rm -f $DIR/$tfile
18273 }
18274 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
18275
18276 prep_801() {
18277         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
18278         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
18279                 skip "Need server version at least 2.9.55"
18280
18281         start_full_debug_logging
18282 }
18283
18284 post_801() {
18285         stop_full_debug_logging
18286 }
18287
18288 barrier_stat() {
18289         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
18290                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
18291                            awk '/The barrier for/ { print $7 }')
18292                 echo $st
18293         else
18294                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
18295                 echo \'$st\'
18296         fi
18297 }
18298
18299 barrier_expired() {
18300         local expired
18301
18302         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
18303                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
18304                           awk '/will be expired/ { print $7 }')
18305         else
18306                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
18307         fi
18308
18309         echo $expired
18310 }
18311
18312 test_801a() {
18313         prep_801
18314
18315         echo "Start barrier_freeze at: $(date)"
18316         #define OBD_FAIL_BARRIER_DELAY          0x2202
18317         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
18318         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
18319
18320         sleep 2
18321         local b_status=$(barrier_stat)
18322         echo "Got barrier status at: $(date)"
18323         [ "$b_status" = "'freezing_p1'" ] ||
18324                 error "(1) unexpected barrier status $b_status"
18325
18326         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
18327         wait
18328         b_status=$(barrier_stat)
18329         [ "$b_status" = "'frozen'" ] ||
18330                 error "(2) unexpected barrier status $b_status"
18331
18332         local expired=$(barrier_expired)
18333         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
18334         sleep $((expired + 3))
18335
18336         b_status=$(barrier_stat)
18337         [ "$b_status" = "'expired'" ] ||
18338                 error "(3) unexpected barrier status $b_status"
18339
18340         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
18341                 error "(4) fail to freeze barrier"
18342
18343         b_status=$(barrier_stat)
18344         [ "$b_status" = "'frozen'" ] ||
18345                 error "(5) unexpected barrier status $b_status"
18346
18347         echo "Start barrier_thaw at: $(date)"
18348         #define OBD_FAIL_BARRIER_DELAY          0x2202
18349         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
18350         do_facet mgs $LCTL barrier_thaw $FSNAME &
18351
18352         sleep 2
18353         b_status=$(barrier_stat)
18354         echo "Got barrier status at: $(date)"
18355         [ "$b_status" = "'thawing'" ] ||
18356                 error "(6) unexpected barrier status $b_status"
18357
18358         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
18359         wait
18360         b_status=$(barrier_stat)
18361         [ "$b_status" = "'thawed'" ] ||
18362                 error "(7) unexpected barrier status $b_status"
18363
18364         #define OBD_FAIL_BARRIER_FAILURE        0x2203
18365         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
18366         do_facet mgs $LCTL barrier_freeze $FSNAME
18367
18368         b_status=$(barrier_stat)
18369         [ "$b_status" = "'failed'" ] ||
18370                 error "(8) unexpected barrier status $b_status"
18371
18372         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
18373         do_facet mgs $LCTL barrier_thaw $FSNAME
18374
18375         post_801
18376 }
18377 run_test 801a "write barrier user interfaces and stat machine"
18378
18379 test_801b() {
18380         prep_801
18381
18382         mkdir $DIR/$tdir || error "(1) fail to mkdir"
18383         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
18384         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
18385         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
18386         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
18387
18388         cancel_lru_locks mdc
18389
18390         # 180 seconds should be long enough
18391         do_facet mgs $LCTL barrier_freeze $FSNAME 180
18392
18393         local b_status=$(barrier_stat)
18394         [ "$b_status" = "'frozen'" ] ||
18395                 error "(6) unexpected barrier status $b_status"
18396
18397         mkdir $DIR/$tdir/d0/d10 &
18398         mkdir_pid=$!
18399
18400         touch $DIR/$tdir/d1/f13 &
18401         touch_pid=$!
18402
18403         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
18404         ln_pid=$!
18405
18406         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
18407         mv_pid=$!
18408
18409         rm -f $DIR/$tdir/d4/f12 &
18410         rm_pid=$!
18411
18412         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
18413
18414         # To guarantee taht the 'stat' is not blocked
18415         b_status=$(barrier_stat)
18416         [ "$b_status" = "'frozen'" ] ||
18417                 error "(8) unexpected barrier status $b_status"
18418
18419         # let above commands to run at background
18420         sleep 5
18421
18422         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
18423         ps -p $touch_pid || error "(10) touch should be blocked"
18424         ps -p $ln_pid || error "(11) link should be blocked"
18425         ps -p $mv_pid || error "(12) rename should be blocked"
18426         ps -p $rm_pid || error "(13) unlink should be blocked"
18427
18428         b_status=$(barrier_stat)
18429         [ "$b_status" = "'frozen'" ] ||
18430                 error "(14) unexpected barrier status $b_status"
18431
18432         do_facet mgs $LCTL barrier_thaw $FSNAME
18433         b_status=$(barrier_stat)
18434         [ "$b_status" = "'thawed'" ] ||
18435                 error "(15) unexpected barrier status $b_status"
18436
18437         wait $mkdir_pid || error "(16) mkdir should succeed"
18438         wait $touch_pid || error "(17) touch should succeed"
18439         wait $ln_pid || error "(18) link should succeed"
18440         wait $mv_pid || error "(19) rename should succeed"
18441         wait $rm_pid || error "(20) unlink should succeed"
18442
18443         post_801
18444 }
18445 run_test 801b "modification will be blocked by write barrier"
18446
18447 test_801c() {
18448         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
18449
18450         prep_801
18451
18452         stop mds2 || error "(1) Fail to stop mds2"
18453
18454         do_facet mgs $LCTL barrier_freeze $FSNAME 30
18455
18456         local b_status=$(barrier_stat)
18457         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
18458                 do_facet mgs $LCTL barrier_thaw $FSNAME
18459                 error "(2) unexpected barrier status $b_status"
18460         }
18461
18462         do_facet mgs $LCTL barrier_rescan $FSNAME ||
18463                 error "(3) Fail to rescan barrier bitmap"
18464
18465         do_facet mgs $LCTL barrier_freeze $FSNAME 10
18466
18467         b_status=$(barrier_stat)
18468         [ "$b_status" = "'frozen'" ] ||
18469                 error "(4) unexpected barrier status $b_status"
18470
18471         do_facet mgs $LCTL barrier_thaw $FSNAME
18472         b_status=$(barrier_stat)
18473         [ "$b_status" = "'thawed'" ] ||
18474                 error "(5) unexpected barrier status $b_status"
18475
18476         local devname=$(mdsdevname 2)
18477
18478         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
18479
18480         do_facet mgs $LCTL barrier_rescan $FSNAME ||
18481                 error "(7) Fail to rescan barrier bitmap"
18482
18483         post_801
18484 }
18485 run_test 801c "rescan barrier bitmap"
18486
18487 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
18488 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
18489 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
18490
18491 cleanup_802() {
18492         trap 0
18493
18494         stopall
18495         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
18496         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
18497         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
18498         setupall
18499 }
18500
18501 test_802() {
18502
18503         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
18504         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
18505                 skip "Need server version at least 2.9.55"
18506
18507         mkdir $DIR/$tdir || error "(1) fail to mkdir"
18508
18509         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
18510                 error "(2) Fail to copy"
18511
18512         trap cleanup_802 EXIT
18513
18514         # sync by force before remount as readonly
18515         sync; sync_all_data; sleep 3; sync_all_data
18516
18517         stopall
18518
18519         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
18520         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
18521         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
18522
18523         echo "Mount the server as read only"
18524         setupall server_only || error "(3) Fail to start servers"
18525
18526         echo "Mount client without ro should fail"
18527         mount_client $MOUNT &&
18528                 error "(4) Mount client without 'ro' should fail"
18529
18530         echo "Mount client with ro should succeed"
18531         mount_client $MOUNT ro ||
18532                 error "(5) Mount client with 'ro' should succeed"
18533
18534         echo "Modify should be refused"
18535         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
18536
18537         echo "Read should be allowed"
18538         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
18539                 error "(7) Read should succeed under ro mode"
18540
18541         cleanup_802
18542 }
18543 run_test 802 "simulate readonly device"
18544
18545 test_803() {
18546         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
18547         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18548                 skip "MDS needs to be newer than 2.10.54"
18549
18550         mkdir -p $DIR/$tdir
18551         # Create some objects on all MDTs to trigger related logs objects
18552         for idx in $(seq $MDSCOUNT); do
18553                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
18554                         $DIR/$tdir/dir${idx} ||
18555                         error "Fail to create $DIR/$tdir/dir${idx}"
18556         done
18557
18558         sync; sleep 3
18559         echo "before create:"
18560         $LFS df -i $MOUNT
18561         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18562
18563         for ((i=0; i<10; i++)); do
18564                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
18565                         error "Fail to create $DIR/$tdir/foo$i"
18566         done
18567
18568         sync; sleep 3
18569         echo "after create:"
18570         $LFS df -i $MOUNT
18571         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18572
18573         [ $after_used -ge $((before_used + 10)) ] ||
18574                 error "before ($before_used) + 10 > after ($after_used)"
18575
18576         for ((i=0; i<10; i++)); do
18577                 rm -rf $DIR/$tdir/foo$i ||
18578                         error "Fail to remove $DIR/$tdir/foo$i"
18579         done
18580
18581         sleep 3 # avoid MDT return cached statfs
18582         wait_delete_completed
18583         echo "after unlink:"
18584         $LFS df -i $MOUNT
18585         before_used=$after_used
18586         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18587
18588         [ $after_used -le $((before_used - 8)) ] ||
18589                 error "before ($before_used) - 8 < after ($after_used)"
18590 }
18591 run_test 803 "verify agent object for remote object"
18592
18593 test_804() {
18594         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
18595         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18596                 skip "MDS needs to be newer than 2.10.54"
18597         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
18598                 skip_env "ldiskfs only test"
18599
18600         mkdir -p $DIR/$tdir
18601         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
18602                 error "Fail to create $DIR/$tdir/dir0"
18603
18604         local fid=$($LFS path2fid $DIR/$tdir/dir0)
18605         local dev=$(mdsdevname 2)
18606
18607         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18608                 grep ${fid} || error "NOT found agent entry for dir0"
18609
18610         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
18611                 error "Fail to create $DIR/$tdir/dir1"
18612
18613         touch $DIR/$tdir/dir1/foo0 ||
18614                 error "Fail to create $DIR/$tdir/dir1/foo0"
18615         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
18616         local rc=0
18617
18618         for idx in $(seq $MDSCOUNT); do
18619                 dev=$(mdsdevname $idx)
18620                 do_facet mds${idx} \
18621                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18622                         grep ${fid} && rc=$idx
18623         done
18624
18625         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
18626                 error "Fail to rename foo0 to foo1"
18627         if [ $rc -eq 0 ]; then
18628                 for idx in $(seq $MDSCOUNT); do
18629                         dev=$(mdsdevname $idx)
18630                         do_facet mds${idx} \
18631                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18632                         grep ${fid} && rc=$idx
18633                 done
18634         fi
18635
18636         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
18637                 error "Fail to rename foo1 to foo2"
18638         if [ $rc -eq 0 ]; then
18639                 for idx in $(seq $MDSCOUNT); do
18640                         dev=$(mdsdevname $idx)
18641                         do_facet mds${idx} \
18642                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18643                         grep ${fid} && rc=$idx
18644                 done
18645         fi
18646
18647         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
18648
18649         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
18650                 error "Fail to link to $DIR/$tdir/dir1/foo2"
18651         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
18652                 error "Fail to rename foo2 to foo0"
18653         unlink $DIR/$tdir/dir1/foo0 ||
18654                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
18655         rm -rf $DIR/$tdir/dir0 ||
18656                 error "Fail to rm $DIR/$tdir/dir0"
18657
18658         for idx in $(seq $MDSCOUNT); do
18659                 dev=$(mdsdevname $idx)
18660                 rc=0
18661
18662                 stop mds${idx}
18663                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
18664                         rc=$?
18665                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
18666                         error "mount mds$idx failed"
18667                 df $MOUNT > /dev/null 2>&1
18668
18669                 # e2fsck should not return error
18670                 [ $rc -eq 0 ] ||
18671                         error "e2fsck detected error on MDT${idx}: rc=$rc"
18672         done
18673 }
18674 run_test 804 "verify agent entry for remote entry"
18675
18676 cleanup_805() {
18677         do_facet $SINGLEMDS zfs set quota=$old $fsset
18678         unlinkmany $DIR/$tdir/f- 1000000
18679         trap 0
18680 }
18681
18682 test_805() {
18683         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
18684         [ "$(facet_fstype mds1)" != "zfs" ] &&
18685                 skip "ZFS specific test"
18686         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
18687                 skip "netfree not implemented before 0.7"
18688         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
18689                 skip "Need MDS version at least 2.10.57"
18690
18691         local fsset
18692         local freekb
18693         local usedkb
18694         local old
18695         local quota
18696         local pref="osd-zfs.lustre-MDT0000."
18697
18698         # limit available space on MDS dataset to meet nospace issue
18699         # quickly. then ZFS 0.7.2 can use reserved space if asked
18700         # properly (using netfree flag in osd_declare_destroy()
18701         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
18702         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
18703                 gawk '{print $3}')
18704         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
18705         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
18706         let "usedkb=usedkb-freekb"
18707         let "freekb=freekb/2"
18708         if let "freekb > 5000"; then
18709                 let "freekb=5000"
18710         fi
18711         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
18712         trap cleanup_805 EXIT
18713         mkdir $DIR/$tdir
18714         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
18715         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
18716         rm -rf $DIR/$tdir || error "not able to remove"
18717         do_facet $SINGLEMDS zfs set quota=$old $fsset
18718         trap 0
18719 }
18720 run_test 805 "ZFS can remove from full fs"
18721
18722 #
18723 # tests that do cleanup/setup should be run at the end
18724 #
18725
18726 test_900() {
18727         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18728         local ls
18729
18730         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
18731         $LCTL set_param fail_loc=0x903
18732
18733         cancel_lru_locks MGC
18734
18735         FAIL_ON_ERROR=true cleanup
18736         FAIL_ON_ERROR=true setup
18737 }
18738 run_test 900 "umount should not race with any mgc requeue thread"
18739
18740 complete $SECONDS
18741 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
18742 check_and_cleanup_lustre
18743 if [ "$I_MOUNTED" != "yes" ]; then
18744         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
18745 fi
18746 exit_status