Whamcloud - gitweb
567d2cb570a555767856079513129b249a98c872
[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."; return 0; }
130         return 1
131 }
132
133 check_and_setup_lustre
134 DIR=${DIR:-$MOUNT}
135 assert_DIR
136
137 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
138
139 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
140 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
141 rm -rf $DIR/[Rdfs][0-9]*
142
143 # $RUNAS_ID may get set incorrectly somewhere else
144 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
145
146 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
147
148 build_test_filter
149
150 if [ "${ONLY}" = "MOUNT" ] ; then
151         echo "Lustre is up, please go on"
152         exit
153 fi
154
155 echo "preparing for tests involving mounts"
156 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
157 touch $EXT2_DEV
158 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
159 echo # add a newline after mke2fs.
160
161 umask 077
162
163 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
164 lctl set_param debug=-1 2> /dev/null || true
165 test_0a() {
166         touch $DIR/$tfile
167         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
168         rm $DIR/$tfile
169         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
170 }
171 run_test 0a "touch; rm ====================="
172
173 test_0b() {
174         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
175         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
176 }
177 run_test 0b "chmod 0755 $DIR ============================="
178
179 test_0c() {
180         $LCTL get_param mdc.*.import | grep "state: FULL" ||
181                 error "import not FULL"
182         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
183                 error "bad target"
184 }
185 run_test 0c "check import proc"
186
187 test_0d() { # LU-3397
188         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
189                 skip "proc exports not supported before 2.10.57" && return
190
191         local mgs_exp="mgs.MGS.exports"
192         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
193         local exp_client_nid
194         local exp_client_version
195         local exp_val
196         local imp_val
197         local temp_imp=$DIR/$tfile.import
198         local temp_exp=$DIR/$tfile.export
199
200         # save mgc import file to $temp_imp
201         $LCTL get_param mgc.*.import | tee $temp_imp
202         # Check if client uuid is found in MGS export
203         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
204                 [ $(do_facet mgs $LCTL get_param $exp_client_nid.uuid) == \
205                         $client_uuid ] &&
206                         break;
207         done
208         # save mgs export file to $temp_exp
209         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
210
211         # Compare the value of field "connect_flags"
212         imp_val=$(grep "connect_flags" $temp_imp)
213         exp_val=$(grep "connect_flags" $temp_exp)
214         [ "$exp_val" == "$imp_val" ] ||
215                 error "export flags '$exp_val' != import flags '$imp_val'"
216
217         # Compare the value of client version
218         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
219         exp_val=$(version_code $exp_client_version)
220         imp_val=$(lustre_version_code client)
221         [ "$exp_val" == "$imp_val" ] ||
222                 error "export client version '$exp_val' != '$imp_val'"
223 }
224 run_test 0d "check export proc ============================="
225
226 test_1() {
227         test_mkdir $DIR/$tdir
228         test_mkdir $DIR/$tdir/d2
229         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
230         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
231         rmdir $DIR/$tdir/d2
232         rmdir $DIR/$tdir
233         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
234 }
235 run_test 1 "mkdir; remkdir; rmdir"
236
237 test_2() {
238         test_mkdir $DIR/$tdir
239         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
240         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
241         rm -r $DIR/$tdir
242         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
243 }
244 run_test 2 "mkdir; touch; rmdir; check file"
245
246 test_3() {
247         test_mkdir $DIR/$tdir
248         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
249         touch $DIR/$tdir/$tfile
250         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
251         rm -r $DIR/$tdir
252         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
253 }
254 run_test 3 "mkdir; touch; rmdir; check dir"
255
256 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
257 test_4() {
258         test_mkdir -i 1 $DIR/$tdir
259
260         touch $DIR/$tdir/$tfile ||
261                 error "Create file under remote directory failed"
262
263         rmdir $DIR/$tdir &&
264                 error "Expect error removing in-use dir $DIR/$tdir"
265
266         test -d $DIR/$tdir || error "Remote directory disappeared"
267
268         rm -rf $DIR/$tdir || error "remove remote dir error"
269 }
270 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
271
272 test_5() {
273         test_mkdir $DIR/$tdir
274         test_mkdir $DIR/$tdir/d2
275         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
276         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
277         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
278 }
279 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
280
281 test_6a() {
282         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
283         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
284         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
285                 error "$tfile does not have perm 0666 or UID $UID"
286         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
287         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
288                 error "$tfile should be 0666 and owned by UID $UID"
289 }
290 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
291
292 test_6c() {
293         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
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" && return
306         touch $DIR/$tfile
307         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
308         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
309                 error "$tfile should be owned by GID $UID"
310         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
311         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
312                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
313 }
314 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
315
316 test_6g() {
317         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
318         test_mkdir $DIR/$tdir
319         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
320         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
321         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
322         test_mkdir $DIR/$tdir/d/subdir
323         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
324                 error "$tdir/d/subdir should be GID $RUNAS_GID"
325         if [[ $MDSCOUNT -gt 1 ]]; then
326                 # check remote dir sgid inherite
327                 $LFS mkdir -i 0 $DIR/$tdir.local ||
328                         error "mkdir $tdir.local failed"
329                 chmod g+s $DIR/$tdir.local ||
330                         error "chmod $tdir.local failed"
331                 chgrp $RUNAS_GID $DIR/$tdir.local ||
332                         error "chgrp $tdir.local failed"
333                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
334                         error "mkdir $tdir.remote failed"
335                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
336                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
337                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
338                         error "$tdir.remote should be mode 02755"
339         fi
340 }
341 run_test 6g "verify new dir in sgid dir inherits group"
342
343 test_6h() { # bug 7331
344         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
345         touch $DIR/$tfile || error "touch failed"
346         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
347         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
348                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
349         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
350                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
351 }
352 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
353
354 test_7a() {
355         test_mkdir $DIR/$tdir
356         $MCREATE $DIR/$tdir/$tfile
357         chmod 0666 $DIR/$tdir/$tfile
358         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
359                 error "$tdir/$tfile should be mode 0666"
360 }
361 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
362
363 test_7b() {
364         if [ ! -d $DIR/$tdir ]; then
365                 test_mkdir $DIR/$tdir
366         fi
367         $MCREATE $DIR/$tdir/$tfile
368         echo -n foo > $DIR/$tdir/$tfile
369         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
370         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
371 }
372 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
373
374 test_8() {
375         test_mkdir $DIR/$tdir
376         touch $DIR/$tdir/$tfile
377         chmod 0666 $DIR/$tdir/$tfile
378         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
379                 error "$tfile mode not 0666"
380 }
381 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
382
383 test_9() {
384         test_mkdir $DIR/$tdir
385         test_mkdir $DIR/$tdir/d2
386         test_mkdir $DIR/$tdir/d2/d3
387         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
388 }
389 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
390
391 test_10() {
392         test_mkdir $DIR/$tdir
393         test_mkdir $DIR/$tdir/d2
394         touch $DIR/$tdir/d2/$tfile
395         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
396                 error "$tdir/d2/$tfile not a file"
397 }
398 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
399
400 test_11() {
401         test_mkdir $DIR/$tdir
402         test_mkdir $DIR/$tdir/d2
403         chmod 0666 $DIR/$tdir/d2
404         chmod 0705 $DIR/$tdir/d2
405         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
406                 error "$tdir/d2 mode not 0705"
407 }
408 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
409
410 test_12() {
411         test_mkdir $DIR/$tdir
412         touch $DIR/$tdir/$tfile
413         chmod 0666 $DIR/$tdir/$tfile
414         chmod 0654 $DIR/$tdir/$tfile
415         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
416                 error "$tdir/d2 mode not 0654"
417 }
418 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
419
420 test_13() {
421         test_mkdir $DIR/$tdir
422         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
423         >  $DIR/$tdir/$tfile
424         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
425                 error "$tdir/$tfile size not 0 after truncate"
426 }
427 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
428
429 test_14() {
430         test_mkdir $DIR/$tdir
431         touch $DIR/$tdir/$tfile
432         rm $DIR/$tdir/$tfile
433         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
434 }
435 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
436
437 test_15() {
438         test_mkdir $DIR/$tdir
439         touch $DIR/$tdir/$tfile
440         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
441         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
442                 error "$tdir/${tfile_2} not a file after rename"
443         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
444 }
445 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
446
447 test_16() {
448         test_mkdir $DIR/$tdir
449         touch $DIR/$tdir/$tfile
450         rm -rf $DIR/$tdir/$tfile
451         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
452 }
453 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
454
455 test_17a() {
456         test_mkdir $DIR/$tdir
457         touch $DIR/$tdir/$tfile
458         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
459         ls -l $DIR/$tdir
460         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
461                 error "$tdir/l-exist not a symlink"
462         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
463                 error "$tdir/l-exist not referencing a file"
464         rm -f $DIR/$tdir/l-exist
465         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
466 }
467 run_test 17a "symlinks: create, remove (real)"
468
469 test_17b() {
470         test_mkdir $DIR/$tdir
471         ln -s no-such-file $DIR/$tdir/l-dangle
472         ls -l $DIR/$tdir
473         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
474                 error "$tdir/l-dangle not referencing no-such-file"
475         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
476                 error "$tdir/l-dangle not referencing non-existent file"
477         rm -f $DIR/$tdir/l-dangle
478         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
479 }
480 run_test 17b "symlinks: create, remove (dangling)"
481
482 test_17c() { # bug 3440 - don't save failed open RPC for replay
483         test_mkdir $DIR/$tdir
484         ln -s foo $DIR/$tdir/$tfile
485         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
486 }
487 run_test 17c "symlinks: open dangling (should return error)"
488
489 test_17d() {
490         test_mkdir $DIR/$tdir
491         ln -s foo $DIR/$tdir/$tfile
492         touch $DIR/$tdir/$tfile || error "creating to new symlink"
493 }
494 run_test 17d "symlinks: create dangling"
495
496 test_17e() {
497         test_mkdir $DIR/$tdir
498         local foo=$DIR/$tdir/$tfile
499         ln -s $foo $foo || error "create symlink failed"
500         ls -l $foo || error "ls -l failed"
501         ls $foo && error "ls not failed" || true
502 }
503 run_test 17e "symlinks: create recursive symlink (should return error)"
504
505 test_17f() {
506         test_mkdir $DIR/$tdir
507         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
508         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
509         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
510         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
511         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
512         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
513         ls -l  $DIR/$tdir
514 }
515 run_test 17f "symlinks: long and very long symlink name"
516
517 # str_repeat(S, N) generate a string that is string S repeated N times
518 str_repeat() {
519         local s=$1
520         local n=$2
521         local ret=''
522         while [ $((n -= 1)) -ge 0 ]; do
523                 ret=$ret$s
524         done
525         echo $ret
526 }
527
528 # Long symlinks and LU-2241
529 test_17g() {
530         test_mkdir $DIR/$tdir
531         local TESTS="59 60 61 4094 4095"
532
533         # Fix for inode size boundary in 2.1.4
534         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
535                 TESTS="4094 4095"
536
537         # Patch not applied to 2.2 or 2.3 branches
538         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
539         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
540                 TESTS="4094 4095"
541
542         # skip long symlink name for rhel6.5.
543         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
544         grep -q '6.5' /etc/redhat-release &>/dev/null &&
545                 TESTS="59 60 61 4062 4063"
546
547         for i in $TESTS; do
548                 local SYMNAME=$(str_repeat 'x' $i)
549                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
550                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
551         done
552 }
553 run_test 17g "symlinks: really long symlink name and inode boundaries"
554
555 test_17h() { #bug 17378
556         remote_mds_nodsh && skip "remote MDS with nodsh" && return
557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
558         local mdt_idx
559         test_mkdir $DIR/$tdir
560         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
561         $LFS setstripe -c -1 $DIR/$tdir
562         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
563         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
564         touch $DIR/$tdir/$tfile || true
565 }
566 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
567
568 test_17i() { #bug 20018
569         remote_mds_nodsh && skip "remote MDS with nodsh" && return
570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
571         test_mkdir -c1 $DIR/$tdir
572         local foo=$DIR/$tdir/$tfile
573         local mdt_idx
574         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
575         ln -s $foo $foo || error "create symlink failed"
576 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
577         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
578         ls -l $foo && error "error not detected"
579         return 0
580 }
581 run_test 17i "don't panic on short symlink (should return error)"
582
583 test_17k() { #bug 22301
584         [[ -z "$(which rsync 2>/dev/null)" ]] &&
585                 skip "no rsync command" && return 0
586         rsync --help | grep -q xattr ||
587                 skip_env "$(rsync --version | head -n1) does not support xattrs"
588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
589         test_mkdir $DIR/$tdir
590         test_mkdir $DIR/$tdir.new
591         touch $DIR/$tdir/$tfile
592         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
593         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
594                 error "rsync failed with xattrs enabled"
595 }
596 run_test 17k "symlinks: rsync with xattrs enabled"
597
598 test_17l() { # LU-279
599         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
600                 skip "no getfattr command" && return 0
601         test_mkdir $DIR/$tdir
602         touch $DIR/$tdir/$tfile
603         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
604         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
605                 # -h to not follow symlinks. -m '' to list all the xattrs.
606                 # grep to remove first line: '# file: $path'.
607                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
608                 do
609                         lgetxattr_size_check $path $xattr ||
610                                 error "lgetxattr_size_check $path $xattr failed"
611                 done
612         done
613 }
614 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
615
616 # LU-1540
617 test_17m() {
618         local short_sym="0123456789"
619         local wdir=$DIR/$tdir
620         local i
621
622         remote_mds_nodsh && skip "remote MDS with nodsh" && return
623         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
624         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
625                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
626
627         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
628                 skip "ldiskfs only test" && return 0
629
630         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
631
632         test_mkdir $wdir
633         long_sym=$short_sym
634         # create a long symlink file
635         for ((i = 0; i < 4; ++i)); do
636                 long_sym=${long_sym}${long_sym}
637         done
638
639         echo "create 512 short and long symlink files under $wdir"
640         for ((i = 0; i < 256; ++i)); do
641                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
642                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
643         done
644
645         echo "erase them"
646         rm -f $wdir/*
647         sync
648         wait_delete_completed
649
650         echo "recreate the 512 symlink files with a shorter string"
651         for ((i = 0; i < 512; ++i)); do
652                 # rewrite the symlink file with a shorter string
653                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
654                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
655         done
656
657         local mds_index=$(($($LFS getstripe -M $wdir) + 1))
658         local devname=$(mdsdevname $mds_index)
659
660         echo "stop and checking mds${mds_index}:"
661         # e2fsck should not return error
662         stop mds${mds_index}
663         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
664         rc=$?
665
666         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
667                 error "start mds${mds_index} failed"
668         df $MOUNT > /dev/null 2>&1
669         [ $rc -eq 0 ] ||
670                 error "e2fsck detected error for short/long symlink: rc=$rc"
671         rm -f $wdir/*
672 }
673 run_test 17m "run e2fsck against MDT which contains short/long symlink"
674
675 check_fs_consistency_17n() {
676         local mdt_index
677         local rc=0
678
679         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
680         # so it only check MDT1/MDT2 instead of all of MDTs.
681         for mdt_index in 1 2; do
682                 local devname=$(mdsdevname $mdt_index)
683                 # e2fsck should not return error
684                 stop mds${mdt_index}
685                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
686                         rc=$((rc + $?))
687
688                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
689                         error "mount mds$mdt_index failed"
690                 df $MOUNT > /dev/null 2>&1
691         done
692         return $rc
693 }
694
695 test_17n() {
696         local i
697
698         remote_mds_nodsh && skip "remote MDS with nodsh" && return
699         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
700         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
701                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
702
703         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
704                 skip "ldiskfs only test" && return 0
705
706         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
707
708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
709
710         test_mkdir $DIR/$tdir
711         for ((i=0; i<10; i++)); do
712                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
713                         error "create remote dir error $i"
714                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
715                         error "create files under remote dir failed $i"
716         done
717
718         check_fs_consistency_17n ||
719                 error "e2fsck report error after create files under remote dir"
720
721         for ((i = 0; i < 10; i++)); do
722                 rm -rf $DIR/$tdir/remote_dir_${i} ||
723                         error "destroy remote dir error $i"
724         done
725
726         check_fs_consistency_17n ||
727                 error "e2fsck report error after unlink files under remote dir"
728
729         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
730                 skip "lustre < 2.4.50 does not support migrate mv " && return
731
732         for ((i = 0; i < 10; i++)); do
733                 mkdir -p $DIR/$tdir/remote_dir_${i}
734                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
735                         error "create files under remote dir failed $i"
736                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
737                         error "migrate remote dir error $i"
738         done
739         check_fs_consistency_17n || error "e2fsck report error after migration"
740
741         for ((i = 0; i < 10; i++)); do
742                 rm -rf $DIR/$tdir/remote_dir_${i} ||
743                         error "destroy remote dir error $i"
744         done
745
746         check_fs_consistency_17n || error "e2fsck report error after unlink"
747 }
748 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
749
750 test_17o() {
751         remote_mds_nodsh && skip "remote MDS with nodsh" && return
752         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
753                 skip "Need MDS version at least 2.3.64" && return
754
755         local wdir=$DIR/${tdir}o
756         local mdt_index
757         local rc=0
758
759         test_mkdir $wdir
760         touch $wdir/$tfile
761         mdt_index=$($LFS getstripe -M $wdir/$tfile)
762         mdt_index=$((mdt_index + 1))
763
764         cancel_lru_locks mdc
765         #fail mds will wait the failover finish then set
766         #following fail_loc to avoid interfer the recovery process.
767         fail mds${mdt_index}
768
769         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
770         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
771         ls -l $wdir/$tfile && rc=1
772         do_facet mds${mdt_index} lctl set_param fail_loc=0
773         [[ $rc -eq 0 ]] || error "stat file should fail"
774 }
775 run_test 17o "stat file with incompat LMA feature"
776
777 test_18() {
778         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
779         ls $DIR || error "Failed to ls $DIR: $?"
780 }
781 run_test 18 "touch .../f ; ls ... =============================="
782
783 test_19a() {
784         touch $DIR/$tfile
785         ls -l $DIR
786         rm $DIR/$tfile
787         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
788 }
789 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
790
791 test_19b() {
792         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
793 }
794 run_test 19b "ls -l .../f19 (should return error) =============="
795
796 test_19c() {
797         [ $RUNAS_ID -eq $UID ] &&
798                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
799         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
800 }
801 run_test 19c "$RUNAS touch .../f19 (should return error) =="
802
803 test_19d() {
804         cat $DIR/f19 && error || true
805 }
806 run_test 19d "cat .../f19 (should return error) =============="
807
808 test_20() {
809         touch $DIR/$tfile
810         rm $DIR/$tfile
811         touch $DIR/$tfile
812         rm $DIR/$tfile
813         touch $DIR/$tfile
814         rm $DIR/$tfile
815         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
816 }
817 run_test 20 "touch .../f ; ls -l ..."
818
819 test_21() {
820         test_mkdir $DIR/$tdir
821         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
822         ln -s dangle $DIR/$tdir/link
823         echo foo >> $DIR/$tdir/link
824         cat $DIR/$tdir/dangle
825         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
826         $CHECKSTAT -f -t file $DIR/$tdir/link ||
827                 error "$tdir/link not linked to a file"
828 }
829 run_test 21 "write to dangling link"
830
831 test_22() {
832         local wdir=$DIR/$tdir
833         test_mkdir $wdir
834         chown $RUNAS_ID:$RUNAS_GID $wdir
835         (cd $wdir || error "cd $wdir failed";
836                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
837                 $RUNAS tar xf -)
838         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
839         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
840         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
841                 error "checkstat -u failed"
842 }
843 run_test 22 "unpack tar archive as non-root user"
844
845 # was test_23
846 test_23a() {
847         test_mkdir $DIR/$tdir
848         local file=$DIR/$tdir/$tfile
849
850         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
851         openfile -f O_CREAT:O_EXCL $file &&
852                 error "$file recreate succeeded" || true
853 }
854 run_test 23a "O_CREAT|O_EXCL in subdir"
855
856 test_23b() { # bug 18988
857         test_mkdir $DIR/$tdir
858         local file=$DIR/$tdir/$tfile
859
860         rm -f $file
861         echo foo > $file || error "write filed"
862         echo bar >> $file || error "append filed"
863         $CHECKSTAT -s 8 $file || error "wrong size"
864         rm $file
865 }
866 run_test 23b "O_APPEND check"
867
868 # LU-9409, size with O_APPEND and tiny writes
869 test_23c() {
870         local file=$DIR/$tfile
871
872         # single dd
873         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
874         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
875         rm -f $file
876
877         # racing tiny writes
878         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
879         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
880         wait
881         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
882         rm -f $file
883
884         #racing tiny & normal writes
885         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
886         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
887         wait
888         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
889         rm -f $file
890
891         #racing tiny & normal writes 2, ugly numbers
892         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
893         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
894         wait
895         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
896         rm -f $file
897 }
898 run_test 23c "O_APPEND size checks for tiny writes"
899
900 # rename sanity
901 test_24a() {
902         echo '-- same directory rename'
903         test_mkdir $DIR/$tdir
904         touch $DIR/$tdir/$tfile.1
905         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
906         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
907 }
908 run_test 24a "rename file to non-existent target"
909
910 test_24b() {
911         test_mkdir $DIR/$tdir
912         touch $DIR/$tdir/$tfile.{1,2}
913         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
914         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
915         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
916 }
917 run_test 24b "rename file to existing target"
918
919 test_24c() {
920         test_mkdir $DIR/$tdir
921         test_mkdir $DIR/$tdir/d$testnum.1
922         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
923         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
924         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
925 }
926 run_test 24c "rename directory to non-existent target"
927
928 test_24d() {
929         test_mkdir -c1 $DIR/$tdir
930         test_mkdir -c1 $DIR/$tdir/d$testnum.1
931         test_mkdir -c1 $DIR/$tdir/d$testnum.2
932         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
933         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
934         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
935 }
936 run_test 24d "rename directory to existing target"
937
938 test_24e() {
939         echo '-- cross directory renames --'
940         test_mkdir $DIR/R5a
941         test_mkdir $DIR/R5b
942         touch $DIR/R5a/f
943         mv $DIR/R5a/f $DIR/R5b/g
944         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
945         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
946 }
947 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
948
949 test_24f() {
950         test_mkdir $DIR/R6a
951         test_mkdir $DIR/R6b
952         touch $DIR/R6a/f $DIR/R6b/g
953         mv $DIR/R6a/f $DIR/R6b/g
954         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
955         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
956 }
957 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
958
959 test_24g() {
960         test_mkdir $DIR/R7a
961         test_mkdir $DIR/R7b
962         test_mkdir $DIR/R7a/d
963         mv $DIR/R7a/d $DIR/R7b/e
964         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
965         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
966 }
967 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
968
969 test_24h() {
970         test_mkdir -c1 $DIR/R8a
971         test_mkdir -c1 $DIR/R8b
972         test_mkdir -c1 $DIR/R8a/d
973         test_mkdir -c1 $DIR/R8b/e
974         mrename $DIR/R8a/d $DIR/R8b/e
975         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
976         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
977 }
978 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
979
980 test_24i() {
981         echo "-- rename error cases"
982         test_mkdir $DIR/R9
983         test_mkdir $DIR/R9/a
984         touch $DIR/R9/f
985         mrename $DIR/R9/f $DIR/R9/a
986         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
987         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
988         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
989 }
990 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
991
992 test_24j() {
993         test_mkdir $DIR/R10
994         mrename $DIR/R10/f $DIR/R10/g
995         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
996         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
997         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
998 }
999 run_test 24j "source does not exist ============================"
1000
1001 test_24k() {
1002         test_mkdir $DIR/R11a
1003         test_mkdir $DIR/R11a/d
1004         touch $DIR/R11a/f
1005         mv $DIR/R11a/f $DIR/R11a/d
1006         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1007         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1008 }
1009 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1010
1011 # bug 2429 - rename foo foo foo creates invalid file
1012 test_24l() {
1013         f="$DIR/f24l"
1014         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1015 }
1016 run_test 24l "Renaming a file to itself ========================"
1017
1018 test_24m() {
1019         f="$DIR/f24m"
1020         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1021         # on ext3 this does not remove either the source or target files
1022         # though the "expected" operation would be to remove the source
1023         $CHECKSTAT -t file ${f} || error "${f} missing"
1024         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1025 }
1026 run_test 24m "Renaming a file to a hard link to itself ========="
1027
1028 test_24n() {
1029     f="$DIR/f24n"
1030     # this stats the old file after it was renamed, so it should fail
1031     touch ${f}
1032     $CHECKSTAT ${f} || error "${f} missing"
1033     mv ${f} ${f}.rename
1034     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1035     $CHECKSTAT -a ${f} || error "${f} exists"
1036 }
1037 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1038
1039 test_24o() {
1040         test_mkdir $DIR/$tdir
1041         rename_many -s random -v -n 10 $DIR/$tdir
1042 }
1043 run_test 24o "rename of files during htree split"
1044
1045 test_24p() {
1046         test_mkdir $DIR/R12a
1047         test_mkdir $DIR/R12b
1048         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1049         mrename $DIR/R12a $DIR/R12b
1050         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1051         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1052         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1053         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1054 }
1055 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1056
1057 cleanup_multiop_pause() {
1058         trap 0
1059         kill -USR1 $MULTIPID
1060 }
1061
1062 test_24q() {
1063         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1064         test_mkdir $DIR/R13a
1065         test_mkdir $DIR/R13b
1066         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1067         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1068         MULTIPID=$!
1069
1070         trap cleanup_multiop_pause EXIT
1071         mrename $DIR/R13a $DIR/R13b
1072         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1073         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1074         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1075         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1076         cleanup_multiop_pause
1077         wait $MULTIPID || error "multiop close failed"
1078 }
1079 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1080
1081 test_24r() { #bug 3789
1082         test_mkdir $DIR/R14a
1083         test_mkdir $DIR/R14a/b
1084         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1085         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1086         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1087 }
1088 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1089
1090 test_24s() {
1091         test_mkdir $DIR/R15a
1092         test_mkdir $DIR/R15a/b
1093         test_mkdir $DIR/R15a/b/c
1094         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1095         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1096         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1097 }
1098 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1099 test_24t() {
1100         test_mkdir $DIR/R16a
1101         test_mkdir $DIR/R16a/b
1102         test_mkdir $DIR/R16a/b/c
1103         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1104         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1105         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1106 }
1107 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1108
1109 test_24u() { # bug12192
1110         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1111         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1112 }
1113 run_test 24u "create stripe file"
1114
1115 page_size() {
1116         local size
1117         size=$(getconf PAGE_SIZE 2>/dev/null)
1118         echo -n ${size:-4096}
1119 }
1120
1121 simple_cleanup_common() {
1122         local rc=0
1123         trap 0
1124         [ -z "$DIR" -o -z "$tdir" ] && return 0
1125
1126         local start=$SECONDS
1127         rm -rf $DIR/$tdir
1128         rc=$?
1129         wait_delete_completed
1130         echo "cleanup time $((SECONDS - start))"
1131         return $rc
1132 }
1133
1134 max_pages_per_rpc() {
1135         local mdtname="$(printf "MDT%04x" ${1:-0})"
1136         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1137 }
1138
1139 test_24v() {
1140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1141         local nrfiles=${COUNT:-100000}
1142         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1143         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1144
1145         local fname="$DIR/$tdir/$tfile"
1146         test_mkdir "$(dirname $fname)"
1147         # assume MDT0000 has the fewest inodes
1148         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1149         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1150         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1151
1152         trap simple_cleanup_common EXIT
1153
1154         createmany -m "$fname" $nrfiles
1155
1156         cancel_lru_locks mdc
1157         lctl set_param mdc.*.stats clear
1158
1159         # was previously test_24D: LU-6101
1160         # readdir() returns correct number of entries after cursor reload
1161         local num_ls=$(ls $DIR/$tdir | wc -l)
1162         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1163         local num_all=$(ls -a $DIR/$tdir | wc -l)
1164         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1165              $num_all -ne $((nrfiles + 2)) ]; then
1166                 error "Expected $nrfiles files, got $num_ls " \
1167                         "($num_uniq unique $num_all .&..)"
1168         fi
1169         # LU-5 large readdir
1170         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1171         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1172         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1173         # take into account of overhead in lu_dirpage header and end mark in
1174         # each page, plus one in rpc_num calculation.
1175         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1176         local page_entries=$((($(page_size) - 24) / dirent_size))
1177         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1178         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1179         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1180         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1181         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1182         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1183                 error "large readdir doesn't take effect: " \
1184                       "$mds_readpage should be about $rpc_max"
1185
1186         simple_cleanup_common
1187 }
1188 run_test 24v "list large directory (test hash collision, b=17560)"
1189
1190 test_24w() { # bug21506
1191         SZ1=234852
1192         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1193         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1194         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1195         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1196         [[ "$SZ1" -eq "$SZ2" ]] ||
1197                 error "Error reading at the end of the file $tfile"
1198 }
1199 run_test 24w "Reading a file larger than 4Gb"
1200
1201 test_24x() {
1202         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1203
1204         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1205                 skip "Need MDS version at least 2.7.56" && return
1206
1207         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1208         local MDTIDX=1
1209         local remote_dir=$DIR/$tdir/remote_dir
1210
1211         test_mkdir $DIR/$tdir
1212         $LFS mkdir -i $MDTIDX $remote_dir ||
1213                 error "create remote directory failed"
1214
1215         test_mkdir $DIR/$tdir/src_dir
1216         touch $DIR/$tdir/src_file
1217         test_mkdir $remote_dir/tgt_dir
1218         touch $remote_dir/tgt_file
1219
1220         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1221                 error "rename dir cross MDT failed!"
1222
1223         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1224                 error "rename file cross MDT failed!"
1225
1226         touch $DIR/$tdir/ln_file
1227         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1228                 error "ln file cross MDT failed"
1229
1230         rm -rf $DIR/$tdir || error "Can not delete directories"
1231 }
1232 run_test 24x "cross MDT rename/link"
1233
1234 test_24y() {
1235         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1237         local remote_dir=$DIR/$tdir/remote_dir
1238         local mdtidx=1
1239
1240         test_mkdir $DIR/$tdir
1241         $LFS mkdir -i $mdtidx $remote_dir ||
1242                    error "create remote directory failed"
1243
1244         test_mkdir $remote_dir/src_dir
1245         touch $remote_dir/src_file
1246         test_mkdir $remote_dir/tgt_dir
1247         touch $remote_dir/tgt_file
1248
1249         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1250                 error "rename subdir in the same remote dir failed!"
1251
1252         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1253                 error "rename files in the same remote dir failed!"
1254
1255         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1256                 error "link files in the same remote dir failed!"
1257
1258         rm -rf $DIR/$tdir || error "Can not delete directories"
1259 }
1260 run_test 24y "rename/link on the same dir should succeed"
1261
1262 test_24A() { # LU-3182
1263         local NFILES=5000
1264
1265         rm -rf $DIR/$tdir
1266         test_mkdir $DIR/$tdir
1267         trap simple_cleanup_common EXIT
1268         createmany -m $DIR/$tdir/$tfile $NFILES
1269         local t=$(ls $DIR/$tdir | wc -l)
1270         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1271         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1272         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1273                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1274         fi
1275
1276         simple_cleanup_common || error "Can not delete directories"
1277 }
1278 run_test 24A "readdir() returns correct number of entries."
1279
1280 test_24B() { # LU-4805
1281         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1282         local count
1283
1284         test_mkdir $DIR/$tdir
1285         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1286                 error "create striped dir failed"
1287
1288         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1289         [ $count -eq 2 ] || error "Expected 2, got $count"
1290
1291         touch $DIR/$tdir/striped_dir/a
1292
1293         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1294         [ $count -eq 3 ] || error "Expected 3, got $count"
1295
1296         touch $DIR/$tdir/striped_dir/.f
1297
1298         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1299         [ $count -eq 4 ] || error "Expected 4, got $count"
1300
1301         rm -rf $DIR/$tdir || error "Can not delete directories"
1302 }
1303 run_test 24B "readdir for striped dir return correct number of entries"
1304
1305 test_24C() {
1306         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1307
1308         mkdir $DIR/$tdir
1309         mkdir $DIR/$tdir/d0
1310         mkdir $DIR/$tdir/d1
1311
1312         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1313                 error "create striped dir failed"
1314
1315         cd $DIR/$tdir/d0/striped_dir
1316
1317         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1318         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1319         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1320
1321         [ "$d0_ino" = "$parent_ino" ] ||
1322                 error ".. wrong, expect $d0_ino, get $parent_ino"
1323
1324         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1325                 error "mv striped dir failed"
1326
1327         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1328
1329         [ "$d1_ino" = "$parent_ino" ] ||
1330                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1331 }
1332 run_test 24C "check .. in striped dir"
1333
1334 test_24E() {
1335         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1337
1338         mkdir -p $DIR/$tdir
1339         mkdir $DIR/$tdir/src_dir
1340         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1341                 error "create remote source failed"
1342
1343         touch $DIR/$tdir/src_dir/src_child/a
1344
1345         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1346                 error "create remote target dir failed"
1347
1348         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1349                 error "create remote target child failed"
1350
1351         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1352                 error "rename dir cross MDT failed!"
1353
1354         find $DIR/$tdir
1355
1356         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1357                 error "src_child still exists after rename"
1358
1359         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1360                 error "missing file(a) after rename"
1361
1362         rm -rf $DIR/$tdir || error "Can not delete directories"
1363 }
1364 run_test 24E "cross MDT rename/link"
1365
1366 test_25a() {
1367         echo '== symlink sanity ============================================='
1368
1369         test_mkdir $DIR/d25
1370         ln -s d25 $DIR/s25
1371         touch $DIR/s25/foo ||
1372                 error "File creation in symlinked directory failed"
1373 }
1374 run_test 25a "create file in symlinked directory ==============="
1375
1376 test_25b() {
1377         [ ! -d $DIR/d25 ] && test_25a
1378         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1379 }
1380 run_test 25b "lookup file in symlinked directory ==============="
1381
1382 test_26a() {
1383         test_mkdir $DIR/d26
1384         test_mkdir $DIR/d26/d26-2
1385         ln -s d26/d26-2 $DIR/s26
1386         touch $DIR/s26/foo || error "File creation failed"
1387 }
1388 run_test 26a "multiple component symlink ======================="
1389
1390 test_26b() {
1391         test_mkdir -p $DIR/$tdir/d26-2
1392         ln -s $tdir/d26-2/foo $DIR/s26-2
1393         touch $DIR/s26-2 || error "File creation failed"
1394 }
1395 run_test 26b "multiple component symlink at end of lookup ======"
1396
1397 test_26c() {
1398         test_mkdir $DIR/d26.2
1399         touch $DIR/d26.2/foo
1400         ln -s d26.2 $DIR/s26.2-1
1401         ln -s s26.2-1 $DIR/s26.2-2
1402         ln -s s26.2-2 $DIR/s26.2-3
1403         chmod 0666 $DIR/s26.2-3/foo
1404 }
1405 run_test 26c "chain of symlinks"
1406
1407 # recursive symlinks (bug 439)
1408 test_26d() {
1409         ln -s d26-3/foo $DIR/d26-3
1410 }
1411 run_test 26d "create multiple component recursive symlink"
1412
1413 test_26e() {
1414         [ ! -h $DIR/d26-3 ] && test_26d
1415         rm $DIR/d26-3
1416 }
1417 run_test 26e "unlink multiple component recursive symlink"
1418
1419 # recursive symlinks (bug 7022)
1420 test_26f() {
1421         test_mkdir $DIR/$tdir
1422         test_mkdir $DIR/$tdir/$tfile
1423         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1424         test_mkdir -p lndir/bar1
1425         test_mkdir $DIR/$tdir/$tfile/$tfile
1426         cd $tfile                || error "cd $tfile failed"
1427         ln -s .. dotdot          || error "ln dotdot failed"
1428         ln -s dotdot/lndir lndir || error "ln lndir failed"
1429         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1430         output=`ls $tfile/$tfile/lndir/bar1`
1431         [ "$output" = bar1 ] && error "unexpected output"
1432         rm -r $tfile             || error "rm $tfile failed"
1433         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1434 }
1435 run_test 26f "rm -r of a directory which has recursive symlink"
1436
1437 test_27a() {
1438         test_mkdir $DIR/$tdir
1439         $LFS getstripe $DIR/$tdir
1440         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1441         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1442         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1443 }
1444 run_test 27a "one stripe file"
1445
1446 test_27b() {
1447         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1448         test_mkdir $DIR/$tdir
1449         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1450         $LFS getstripe -c $DIR/$tdir/$tfile
1451         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1452                 error "two-stripe file doesn't have two stripes"
1453
1454         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1455 }
1456 run_test 27b "create and write to two stripe file"
1457
1458 test_27d() {
1459         test_mkdir $DIR/$tdir
1460         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1461                 error "setstripe failed"
1462         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1463         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1464 }
1465 run_test 27d "create file with default settings"
1466
1467 test_27e() {
1468         # LU-5839 adds check for existed layout before setting it
1469         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1470                 skip "Need MDS version at least 2.7.56" && return
1471         test_mkdir $DIR/$tdir
1472         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1473         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1474         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1475 }
1476 run_test 27e "setstripe existing file (should return error)"
1477
1478 test_27f() {
1479         test_mkdir $DIR/$tdir
1480         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1481                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1482         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1483                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1484         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1485         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1486 }
1487 run_test 27f "setstripe with bad stripe size (should return error)"
1488
1489 test_27g() {
1490         test_mkdir $DIR/$tdir
1491         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1492         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1493                 error "$DIR/$tdir/$tfile has object"
1494 }
1495 run_test 27g "$LFS getstripe with no objects"
1496
1497 test_27i() {
1498         test_mkdir $DIR/$tdir
1499         touch $DIR/$tdir/$tfile || error "touch failed"
1500         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1501                 error "missing objects"
1502 }
1503 run_test 27i "$LFS getstripe with some objects"
1504
1505 test_27j() {
1506         test_mkdir $DIR/$tdir
1507         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1508                 error "setstripe failed" || true
1509 }
1510 run_test 27j "setstripe with bad stripe offset (should return error)"
1511
1512 test_27k() { # bug 2844
1513         test_mkdir $DIR/$tdir
1514         local file=$DIR/$tdir/$tfile
1515         local ll_max_blksize=$((4 * 1024 * 1024))
1516         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1517         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1518         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1519         dd if=/dev/zero of=$file bs=4k count=1
1520         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1521         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1522 }
1523 run_test 27k "limit i_blksize for broken user apps"
1524
1525 test_27l() {
1526         mcreate $DIR/$tfile || error "creating file"
1527         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1528                 error "setstripe should have failed" || true
1529 }
1530 run_test 27l "check setstripe permissions (should return error)"
1531
1532 test_27m() {
1533         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1534
1535         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1536                    head -n1)
1537         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1538                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1539                 return
1540         fi
1541         trap simple_cleanup_common EXIT
1542         test_mkdir $DIR/$tdir
1543         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1544         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1545                 error "dd should fill OST0"
1546         i=2
1547         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1548                 i=$((i + 1))
1549                 [ $i -gt 256 ] && break
1550         done
1551         i=$((i + 1))
1552         touch $DIR/$tdir/$tfile.$i
1553         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1554             awk '{print $1}'| grep -w "0") ] &&
1555                 error "OST0 was full but new created file still use it"
1556         i=$((i + 1))
1557         touch $DIR/$tdir/$tfile.$i
1558         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1559             awk '{print $1}'| grep -w "0") ] &&
1560                 error "OST0 was full but new created file still use it"
1561         simple_cleanup_common
1562 }
1563 run_test 27m "create file while OST0 was full"
1564
1565 sleep_maxage() {
1566         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1567                       awk '{ print $1 * 2; exit; }')
1568         sleep $delay
1569 }
1570
1571 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1572 # if the OST isn't full anymore.
1573 reset_enospc() {
1574         local OSTIDX=${1:-""}
1575
1576         local list=$(comma_list $(osts_nodes))
1577         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1578
1579         do_nodes $list lctl set_param fail_loc=0
1580         sync    # initiate all OST_DESTROYs from MDS to OST
1581         sleep_maxage
1582 }
1583
1584 exhaust_precreations() {
1585         local OSTIDX=$1
1586         local FAILLOC=$2
1587         local FAILIDX=${3:-$OSTIDX}
1588         local ofacet=ost$((OSTIDX + 1))
1589
1590         test_mkdir -p -c1 $DIR/$tdir
1591         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1592         local mfacet=mds$((mdtidx + 1))
1593         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1594
1595         local OST=$(ostname_from_index $OSTIDX)
1596
1597         # on the mdt's osc
1598         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1599         local last_id=$(do_facet $mfacet lctl get_param -n \
1600                         osc.$mdtosc_proc1.prealloc_last_id)
1601         local next_id=$(do_facet $mfacet lctl get_param -n \
1602                         osc.$mdtosc_proc1.prealloc_next_id)
1603
1604         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1605         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1606
1607         test_mkdir -p $DIR/$tdir/${OST}
1608         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1609 #define OBD_FAIL_OST_ENOSPC              0x215
1610         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1611         echo "Creating to objid $last_id on ost $OST..."
1612         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1613         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1614         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1615         sleep_maxage
1616 }
1617
1618 exhaust_all_precreations() {
1619         local i
1620         for (( i=0; i < OSTCOUNT; i++ )) ; do
1621                 exhaust_precreations $i $1 -1
1622         done
1623 }
1624
1625 test_27n() {
1626         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1628         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1629         remote_ost_nodsh && skip "remote OST with nodsh" && return
1630
1631         reset_enospc
1632         rm -f $DIR/$tdir/$tfile
1633         exhaust_precreations 0 0x80000215
1634         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1635         touch $DIR/$tdir/$tfile || error "touch failed"
1636         $LFS getstripe $DIR/$tdir/$tfile
1637         reset_enospc
1638 }
1639 run_test 27n "create file with some full OSTs"
1640
1641 test_27o() {
1642         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1644         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1645         remote_ost_nodsh && skip "remote OST with nodsh" && return
1646
1647         reset_enospc
1648         rm -f $DIR/$tdir/$tfile
1649         exhaust_all_precreations 0x215
1650
1651         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1652
1653         reset_enospc
1654         rm -rf $DIR/$tdir/*
1655 }
1656 run_test 27o "create file with all full OSTs (should error)"
1657
1658 test_27p() {
1659         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1660         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1661         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1662         remote_ost_nodsh && skip "remote OST with nodsh" && return
1663
1664         reset_enospc
1665         rm -f $DIR/$tdir/$tfile
1666         test_mkdir $DIR/$tdir
1667
1668         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1669         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1670         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1671
1672         exhaust_precreations 0 0x80000215
1673         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1674         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1675         $LFS getstripe $DIR/$tdir/$tfile
1676
1677         reset_enospc
1678 }
1679 run_test 27p "append to a truncated file with some full OSTs"
1680
1681 test_27q() {
1682         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1683         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1684         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1685         remote_ost_nodsh && skip "remote OST with nodsh" && return
1686
1687         reset_enospc
1688         rm -f $DIR/$tdir/$tfile
1689
1690         test_mkdir $DIR/$tdir
1691         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1692         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1693                 error "truncate $DIR/$tdir/$tfile failed"
1694         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1695
1696         exhaust_all_precreations 0x215
1697
1698         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1699         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1700
1701         reset_enospc
1702 }
1703 run_test 27q "append to truncated file with all OSTs full (should error)"
1704
1705 test_27r() {
1706         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1708         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1709         remote_ost_nodsh && skip "remote OST with nodsh" && return
1710
1711         reset_enospc
1712         rm -f $DIR/$tdir/$tfile
1713         exhaust_precreations 0 0x80000215
1714
1715         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1716
1717         reset_enospc
1718 }
1719 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1720
1721 test_27s() { # bug 10725
1722         test_mkdir $DIR/$tdir
1723         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1724         local stripe_count=0
1725         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1726         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1727                 error "stripe width >= 2^32 succeeded" || true
1728
1729 }
1730 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1731
1732 test_27t() { # bug 10864
1733         WDIR=$(pwd)
1734         WLFS=$(which lfs)
1735         cd $DIR
1736         touch $tfile
1737         $WLFS getstripe $tfile
1738         cd $WDIR
1739 }
1740 run_test 27t "check that utils parse path correctly"
1741
1742 test_27u() { # bug 4900
1743         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1744         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1745         local index
1746         local list=$(comma_list $(mdts_nodes))
1747
1748 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1749         do_nodes $list $LCTL set_param fail_loc=0x139
1750         test_mkdir -p $DIR/$tdir
1751         trap simple_cleanup_common EXIT
1752         createmany -o $DIR/$tdir/t- 1000
1753         do_nodes $list $LCTL set_param fail_loc=0
1754
1755         TLOG=$TMP/$tfile.getstripe
1756         $LFS getstripe $DIR/$tdir > $TLOG
1757         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1758         unlinkmany $DIR/$tdir/t- 1000
1759         trap 0
1760         [[ $OBJS -gt 0 ]] &&
1761                 error "$OBJS objects created on OST-0. See $TLOG" ||
1762                 rm -f $TLOG
1763 }
1764 run_test 27u "skip object creation on OSC w/o objects"
1765
1766 test_27v() { # bug 4900
1767         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1769         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1770         remote_ost_nodsh && skip "remote OST with nodsh" && return
1771
1772         exhaust_all_precreations 0x215
1773         reset_enospc
1774
1775         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1776
1777         touch $DIR/$tdir/$tfile
1778         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1779         # all except ost1
1780         for (( i=1; i < OSTCOUNT; i++ )); do
1781                 do_facet ost$i lctl set_param fail_loc=0x705
1782         done
1783         local START=`date +%s`
1784         createmany -o $DIR/$tdir/$tfile 32
1785
1786         local FINISH=`date +%s`
1787         local TIMEOUT=`lctl get_param -n timeout`
1788         local PROCESS=$((FINISH - START))
1789         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1790                error "$FINISH - $START >= $TIMEOUT / 2"
1791         sleep $((TIMEOUT / 2 - PROCESS))
1792         reset_enospc
1793 }
1794 run_test 27v "skip object creation on slow OST"
1795
1796 test_27w() { # bug 10997
1797         test_mkdir $DIR/$tdir
1798         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1799         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1800                 error "stripe size $size != 65536" || true
1801         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1802                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1803 }
1804 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1805
1806 test_27wa() {
1807         [[ $OSTCOUNT -lt 2 ]] &&
1808                 skip_env "skipping multiple stripe count/offset test" && return
1809
1810         test_mkdir $DIR/$tdir
1811         for i in $(seq 1 $OSTCOUNT); do
1812                 offset=$((i - 1))
1813                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1814                         error "setstripe -c $i -i $offset failed"
1815                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1816                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1817                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1818                 [ $index -ne $offset ] &&
1819                         error "stripe offset $index != $offset" || true
1820         done
1821 }
1822 run_test 27wa "check $LFS setstripe -c -i options"
1823
1824 test_27x() {
1825         remote_ost_nodsh && skip "remote OST with nodsh" && return
1826         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1828         OFFSET=$(($OSTCOUNT - 1))
1829         OSTIDX=0
1830         local OST=$(ostname_from_index $OSTIDX)
1831
1832         test_mkdir $DIR/$tdir
1833         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1834         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1835         sleep_maxage
1836         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1837         for i in $(seq 0 $OFFSET); do
1838                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1839                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1840                 error "OST0 was degraded but new created file still use it"
1841         done
1842         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1843 }
1844 run_test 27x "create files while OST0 is degraded"
1845
1846 test_27y() {
1847         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1848         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1849         remote_ost_nodsh && skip "remote OST with nodsh" && return
1850         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1851
1852         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1853         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1854                 osc.$mdtosc.prealloc_last_id)
1855         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1856                 osc.$mdtosc.prealloc_next_id)
1857         local fcount=$((last_id - next_id))
1858         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1859         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1860
1861         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1862                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1863         local OST_DEACTIVE_IDX=-1
1864         local OSC
1865         local OSTIDX
1866         local OST
1867
1868         for OSC in $MDS_OSCS; do
1869                 OST=$(osc_to_ost $OSC)
1870                 OSTIDX=$(index_from_ostuuid $OST)
1871                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1872                         OST_DEACTIVE_IDX=$OSTIDX
1873                 fi
1874                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1875                         echo $OSC "is Deactivated:"
1876                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1877                 fi
1878         done
1879
1880         OSTIDX=$(index_from_ostuuid $OST)
1881         test_mkdir $DIR/$tdir
1882         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1883
1884         for OSC in $MDS_OSCS; do
1885                 OST=$(osc_to_ost $OSC)
1886                 OSTIDX=$(index_from_ostuuid $OST)
1887                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1888                         echo $OST "is degraded:"
1889                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1890                                                 obdfilter.$OST.degraded=1
1891                 fi
1892         done
1893
1894         sleep_maxage
1895         createmany -o $DIR/$tdir/$tfile $fcount
1896
1897         for OSC in $MDS_OSCS; do
1898                 OST=$(osc_to_ost $OSC)
1899                 OSTIDX=$(index_from_ostuuid $OST)
1900                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1901                         echo $OST "is recovered from degraded:"
1902                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1903                                                 obdfilter.$OST.degraded=0
1904                 else
1905                         do_facet $SINGLEMDS lctl --device %$OSC activate
1906                 fi
1907         done
1908
1909         # all osp devices get activated, hence -1 stripe count restored
1910         local stripe_count=0
1911
1912         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1913         # devices get activated.
1914         sleep_maxage
1915         $LFS setstripe -c -1 $DIR/$tfile
1916         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1917         rm -f $DIR/$tfile
1918         [ $stripe_count -ne $OSTCOUNT ] &&
1919                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1920         return 0
1921 }
1922 run_test 27y "create files while OST0 is degraded and the rest inactive"
1923
1924 check_seq_oid()
1925 {
1926         log "check file $1"
1927
1928         lmm_count=$($GETSTRIPE -c $1)
1929         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1930         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1931
1932         local old_ifs="$IFS"
1933         IFS=$'[:]'
1934         fid=($($LFS path2fid $1))
1935         IFS="$old_ifs"
1936
1937         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1938         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1939
1940         # compare lmm_seq and lu_fid->f_seq
1941         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1942         # compare lmm_object_id and lu_fid->oid
1943         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1944
1945         # check the trusted.fid attribute of the OST objects of the file
1946         local have_obdidx=false
1947         local stripe_nr=0
1948         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1949                 # skip lines up to and including "obdidx"
1950                 [ -z "$obdidx" ] && break
1951                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1952                 $have_obdidx || continue
1953
1954                 local ost=$((obdidx + 1))
1955                 local dev=$(ostdevname $ost)
1956                 local oid_hex
1957
1958                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1959
1960                 seq=$(echo $seq | sed -e "s/^0x//g")
1961                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1962                         oid_hex=$(echo $oid)
1963                 else
1964                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1965                 fi
1966                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1967
1968                 local ff=""
1969                 #
1970                 # Don't unmount/remount the OSTs if we don't need to do that.
1971                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1972                 # update too, until that use mount/ll_decode_filter_fid/mount.
1973                 # Re-enable when debugfs will understand new filter_fid.
1974                 #
1975                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1976                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1977                                 $dev 2>/dev/null" | grep "parent=")
1978                 fi
1979                 if [ -z "$ff" ]; then
1980                         stop ost$ost
1981                         mount_fstype ost$ost
1982                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1983                                 $(facet_mntpt ost$ost)/$obj_file)
1984                         unmount_fstype ost$ost
1985                         start ost$ost $dev $OST_MOUNT_OPTS
1986                         clients_up
1987                 fi
1988
1989                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1990
1991                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1992
1993                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1994                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1995                 #
1996                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1997                 #       stripe_size=1048576 component_id=1 component_start=0 \
1998                 #       component_end=33554432
1999                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2000                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2001                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2002                 local ff_pstripe
2003                 if grep -q 'stripe=' <<<$ff; then
2004                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2005                 else
2006                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2007                         # into f_ver in this case.  See comment on ff_parent.
2008                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2009                 fi
2010
2011                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2012                 [ $ff_pseq = $lmm_seq ] ||
2013                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2014                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2015                 [ $ff_poid = $lmm_oid ] ||
2016                         error "FF parent OID $ff_poid != $lmm_oid"
2017                 (($ff_pstripe == $stripe_nr)) ||
2018                         error "FF stripe $ff_pstripe != $stripe_nr"
2019
2020                 stripe_nr=$((stripe_nr + 1))
2021                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2022                         continue
2023                 if grep -q 'stripe_count=' <<<$ff; then
2024                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2025                                             -e 's/ .*//' <<<$ff)
2026                         [ $lmm_count = $ff_scnt ] ||
2027                                 error "FF stripe count $lmm_count != $ff_scnt"
2028                 fi
2029         done
2030 }
2031
2032 test_27z() {
2033         remote_ost_nodsh && skip "remote OST with nodsh" && return
2034         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2035         test_mkdir $DIR/$tdir
2036
2037         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2038                 { error "setstripe -c -1 failed"; return 1; }
2039         # We need to send a write to every object to get parent FID info set.
2040         # This _should_ also work for setattr, but does not currently.
2041         # touch $DIR/$tdir/$tfile-1 ||
2042         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2043                 { error "dd $tfile-1 failed"; return 2; }
2044         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2045                 { error "setstripe -c -1 failed"; return 3; }
2046         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2047                 { error "dd $tfile-2 failed"; return 4; }
2048
2049         # make sure write RPCs have been sent to OSTs
2050         sync; sleep 5; sync
2051
2052         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2053         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2054 }
2055 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2056
2057 test_27A() { # b=19102
2058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2059
2060         save_layout_restore_at_exit $MOUNT
2061
2062         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
2063         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2064                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2065         local default_size=$($GETSTRIPE -S $MOUNT)
2066         local default_offset=$($GETSTRIPE -i $MOUNT)
2067         local dsize=$(do_facet $SINGLEMDS \
2068                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2069         [ $default_size -eq $dsize ] ||
2070                 error "stripe size $default_size != $dsize"
2071         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
2072 }
2073 run_test 27A "check filesystem-wide default LOV EA values"
2074
2075 test_27B() { # LU-2523
2076         test_mkdir $DIR/$tdir
2077         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2078         touch $DIR/$tdir/f0
2079         # open f1 with O_LOV_DELAY_CREATE
2080         # rename f0 onto f1
2081         # call setstripe ioctl on open file descriptor for f1
2082         # close
2083         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2084                 $DIR/$tdir/f0
2085
2086         rm -f $DIR/$tdir/f1
2087         # open f1 with O_LOV_DELAY_CREATE
2088         # unlink f1
2089         # call setstripe ioctl on open file descriptor for f1
2090         # close
2091         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2092
2093         # Allow multiop to fail in imitation of NFS's busted semantics.
2094         true
2095 }
2096 run_test 27B "call setstripe on open unlinked file/rename victim"
2097
2098 test_27C() { #LU-2871
2099         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2100
2101         declare -a ost_idx
2102         local index
2103         local found
2104         local i
2105         local j
2106
2107         test_mkdir $DIR/$tdir
2108         cd $DIR/$tdir
2109         for i in $(seq 0 $((OSTCOUNT - 1))); do
2110                 # set stripe across all OSTs starting from OST$i
2111                 $SETSTRIPE -i $i -c -1 $tfile$i
2112                 # get striping information
2113                 ost_idx=($($GETSTRIPE $tfile$i |
2114                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2115                 echo ${ost_idx[@]}
2116
2117                 # check the layout
2118                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2119                         error "${#ost_idx[@]} != $OSTCOUNT"
2120
2121                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2122                         found=0
2123                         for j in $(echo ${ost_idx[@]}); do
2124                                 if [ $index -eq $j ]; then
2125                                         found=1
2126                                         break
2127                                 fi
2128                         done
2129                         [ $found = 1 ] ||
2130                                 error "Can not find $index in ${ost_idx[@]}"
2131                 done
2132         done
2133 }
2134 run_test 27C "check full striping across all OSTs"
2135
2136 test_27D() {
2137         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2138         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2139         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2140         local POOL=${POOL:-testpool}
2141         local first_ost=0
2142         local last_ost=$(($OSTCOUNT - 1))
2143         local ost_step=1
2144         local ost_list=$(seq $first_ost $ost_step $last_ost)
2145         local ost_range="$first_ost $last_ost $ost_step"
2146
2147         if ! combined_mgs_mds ; then
2148                 mount_mgs_client
2149         fi
2150
2151         test_mkdir $DIR/$tdir
2152         pool_add $POOL || error "pool_add failed"
2153         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2154
2155         local skip27D
2156         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2157                 skip27D+="-s 29"
2158         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2159           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2160                 skip27D+=" -s 30,31"
2161         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2162                 error "llapi_layout_test failed"
2163
2164         destroy_test_pools || error "destroy test pools failed"
2165
2166         if ! combined_mgs_mds ; then
2167                 umount_mgs_client
2168         fi
2169 }
2170 run_test 27D "validate llapi_layout API"
2171
2172 # Verify that default_easize is increased from its initial value after
2173 # accessing a widely striped file.
2174 test_27E() {
2175         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2176         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2177                 skip "client does not have LU-3338 fix" && return
2178
2179         # 72 bytes is the minimum space required to store striping
2180         # information for a file striped across one OST:
2181         # (sizeof(struct lov_user_md_v3) +
2182         #  sizeof(struct lov_user_ost_data_v1))
2183         local min_easize=72
2184         $LCTL set_param -n llite.*.default_easize $min_easize ||
2185                 error "lctl set_param failed"
2186         local easize=$($LCTL get_param -n llite.*.default_easize)
2187
2188         [ $easize -eq $min_easize ] ||
2189                 error "failed to set default_easize"
2190
2191         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2192                 error "setstripe failed"
2193         cat $DIR/$tfile
2194         rm $DIR/$tfile
2195
2196         easize=$($LCTL get_param -n llite.*.default_easize)
2197
2198         [ $easize -gt $min_easize ] ||
2199                 error "default_easize not updated"
2200 }
2201 run_test 27E "check that default extended attribute size properly increases"
2202
2203 test_27F() { # LU-5346/LU-7975
2204         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2206         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2207                 skip "Need MDS version at least 2.8.51" && return
2208         remote_ost_nodsh && skip "remote OST with nodsh" && return
2209
2210         test_mkdir $DIR/$tdir
2211         rm -f $DIR/$tdir/f0
2212         $SETSTRIPE -c 2 $DIR/$tdir
2213
2214         # stop all OSTs to reproduce situation for LU-7975 ticket
2215         for num in $(seq $OSTCOUNT); do
2216                 stop ost$num
2217         done
2218
2219         # open/create f0 with O_LOV_DELAY_CREATE
2220         # truncate f0 to a non-0 size
2221         # close
2222         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2223
2224         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2225         # open/write it again to force delayed layout creation
2226         cat /etc/hosts > $DIR/$tdir/f0 &
2227         catpid=$!
2228
2229         # restart OSTs
2230         for num in $(seq $OSTCOUNT); do
2231                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2232                         error "ost$num failed to start"
2233         done
2234
2235         wait $catpid || error "cat failed"
2236
2237         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2238         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2239
2240 }
2241 run_test 27F "Client resend delayed layout creation with non-zero size"
2242
2243 # createtest also checks that device nodes are created and
2244 # then visible correctly (#2091)
2245 test_28() { # bug 2091
2246         test_mkdir $DIR/d28
2247         $CREATETEST $DIR/d28/ct || error "createtest failed"
2248 }
2249 run_test 28 "create/mknod/mkdir with bad file types ============"
2250
2251 test_29() {
2252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2253         sync; sleep 1; sync # flush out any dirty pages from previous tests
2254         cancel_lru_locks
2255         test_mkdir $DIR/d29
2256         touch $DIR/d29/foo
2257         log 'first d29'
2258         ls -l $DIR/d29
2259
2260         declare -i LOCKCOUNTORIG=0
2261         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2262                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2263         done
2264         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2265
2266         declare -i LOCKUNUSEDCOUNTORIG=0
2267         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2268                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2269         done
2270
2271         log 'second d29'
2272         ls -l $DIR/d29
2273         log 'done'
2274
2275         declare -i LOCKCOUNTCURRENT=0
2276         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2277                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2278         done
2279
2280         declare -i LOCKUNUSEDCOUNTCURRENT=0
2281         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2282                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2283         done
2284
2285         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2286                 $LCTL set_param -n ldlm.dump_namespaces ""
2287                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2288                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2289                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2290                 return 2
2291         fi
2292         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2293                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2294                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2295                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2296                 return 3
2297         fi
2298 }
2299 run_test 29 "IT_GETATTR regression  ============================"
2300
2301 test_30a() { # was test_30
2302         cp $(which ls) $DIR || cp /bin/ls $DIR
2303         $DIR/ls / || error "Can't execute binary from lustre"
2304         rm $DIR/ls
2305 }
2306 run_test 30a "execute binary from Lustre (execve) =============="
2307
2308 test_30b() {
2309         cp `which ls` $DIR || cp /bin/ls $DIR
2310         chmod go+rx $DIR/ls
2311         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2312         rm $DIR/ls
2313 }
2314 run_test 30b "execute binary from Lustre as non-root ==========="
2315
2316 test_30c() { # b=22376
2317         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2318         cp `which ls` $DIR || cp /bin/ls $DIR
2319         chmod a-rw $DIR/ls
2320         cancel_lru_locks mdc
2321         cancel_lru_locks osc
2322         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2323         rm -f $DIR/ls
2324 }
2325 run_test 30c "execute binary from Lustre without read perms ===="
2326
2327 test_31a() {
2328         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2329         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2330 }
2331 run_test 31a "open-unlink file =================================="
2332
2333 test_31b() {
2334         touch $DIR/f31 || error "touch $DIR/f31 failed"
2335         ln $DIR/f31 $DIR/f31b || error "ln failed"
2336         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2337         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2338 }
2339 run_test 31b "unlink file with multiple links while open ======="
2340
2341 test_31c() {
2342         touch $DIR/f31 || error "touch $DIR/f31 failed"
2343         ln $DIR/f31 $DIR/f31c || error "ln failed"
2344         multiop_bg_pause $DIR/f31 O_uc ||
2345                 error "multiop_bg_pause for $DIR/f31 failed"
2346         MULTIPID=$!
2347         $MULTIOP $DIR/f31c Ouc
2348         kill -USR1 $MULTIPID
2349         wait $MULTIPID
2350 }
2351 run_test 31c "open-unlink file with multiple links ============="
2352
2353 test_31d() {
2354         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2355         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2356 }
2357 run_test 31d "remove of open directory ========================="
2358
2359 test_31e() { # bug 2904
2360         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2361 }
2362 run_test 31e "remove of open non-empty directory ==============="
2363
2364 test_31f() { # bug 4554
2365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2366         set -vx
2367         test_mkdir $DIR/d31f
2368         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2369         cp /etc/hosts $DIR/d31f
2370         ls -l $DIR/d31f
2371         $GETSTRIPE $DIR/d31f/hosts
2372         multiop_bg_pause $DIR/d31f D_c || return 1
2373         MULTIPID=$!
2374
2375         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2376         test_mkdir $DIR/d31f
2377         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2378         cp /etc/hosts $DIR/d31f
2379         ls -l $DIR/d31f
2380         $GETSTRIPE $DIR/d31f/hosts
2381         multiop_bg_pause $DIR/d31f D_c || return 1
2382         MULTIPID2=$!
2383
2384         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2385         wait $MULTIPID || error "first opendir $MULTIPID failed"
2386
2387         sleep 6
2388
2389         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2390         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2391         set +vx
2392 }
2393 run_test 31f "remove of open directory with open-unlink file ==="
2394
2395 test_31g() {
2396         echo "-- cross directory link --"
2397         test_mkdir -c1 $DIR/${tdir}ga
2398         test_mkdir -c1 $DIR/${tdir}gb
2399         touch $DIR/${tdir}ga/f
2400         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2401         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2402         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2403         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2404         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2405 }
2406 run_test 31g "cross directory link==============="
2407
2408 test_31h() {
2409         echo "-- cross directory link --"
2410         test_mkdir -c1 $DIR/${tdir}
2411         test_mkdir -c1 $DIR/${tdir}/dir
2412         touch $DIR/${tdir}/f
2413         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2414         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2415         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2416         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2417         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2418 }
2419 run_test 31h "cross directory link under child==============="
2420
2421 test_31i() {
2422         echo "-- cross directory link --"
2423         test_mkdir -c1 $DIR/$tdir
2424         test_mkdir -c1 $DIR/$tdir/dir
2425         touch $DIR/$tdir/dir/f
2426         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2427         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2428         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2429         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2430         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2431 }
2432 run_test 31i "cross directory link under parent==============="
2433
2434 test_31j() {
2435         test_mkdir -c1 -p $DIR/$tdir
2436         test_mkdir -c1 -p $DIR/$tdir/dir1
2437         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2438         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2439         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2440         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2441         return 0
2442 }
2443 run_test 31j "link for directory==============="
2444
2445 test_31k() {
2446         test_mkdir -c1 -p $DIR/$tdir
2447         touch $DIR/$tdir/s
2448         touch $DIR/$tdir/exist
2449         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2450         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2451         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2452         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2453         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2454         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2455         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2456         return 0
2457 }
2458 run_test 31k "link to file: the same, non-existing, dir==============="
2459
2460 test_31m() {
2461         mkdir $DIR/d31m
2462         touch $DIR/d31m/s
2463         mkdir $DIR/d31m2
2464         touch $DIR/d31m2/exist
2465         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2466         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2467         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2468         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2469         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2470         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2471         return 0
2472 }
2473 run_test 31m "link to file: the same, non-existing, dir==============="
2474
2475 test_31n() {
2476         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2477         nlink=$(stat --format=%h $DIR/$tfile)
2478         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2479         local fd=$(free_fd)
2480         local cmd="exec $fd<$DIR/$tfile"
2481         eval $cmd
2482         cmd="exec $fd<&-"
2483         trap "eval $cmd" EXIT
2484         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2485         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2486         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2487         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2488         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2489         eval $cmd
2490 }
2491 run_test 31n "check link count of unlinked file"
2492
2493 link_one() {
2494         local TEMPNAME=$(mktemp $1_XXXXXX)
2495         mlink $TEMPNAME $1 2> /dev/null &&
2496                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2497         munlink $TEMPNAME
2498 }
2499
2500 test_31o() { # LU-2901
2501         test_mkdir $DIR/$tdir
2502         for LOOP in $(seq 100); do
2503                 rm -f $DIR/$tdir/$tfile*
2504                 for THREAD in $(seq 8); do
2505                         link_one $DIR/$tdir/$tfile.$LOOP &
2506                 done
2507                 wait
2508                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2509                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2510                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2511                         break || true
2512         done
2513 }
2514 run_test 31o "duplicate hard links with same filename"
2515
2516 test_31p() {
2517         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2518
2519         test_mkdir $DIR/$tdir
2520         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2521         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2522
2523         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2524                 error "open unlink test1 failed"
2525         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2526                 error "open unlink test2 failed"
2527
2528         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2529                 error "test1 still exists"
2530         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2531                 error "test2 still exists"
2532 }
2533 run_test 31p "remove of open striped directory"
2534
2535 cleanup_test32_mount() {
2536         local rc=0
2537         trap 0
2538         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2539         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2540         losetup -d $loopdev || true
2541         rm -rf $DIR/$tdir
2542         return $rc
2543 }
2544
2545 test_32a() {
2546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2547         echo "== more mountpoints and symlinks ================="
2548         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2549         trap cleanup_test32_mount EXIT
2550         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2551         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2552                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2553         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2554                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2555         cleanup_test32_mount
2556 }
2557 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2558
2559 test_32b() {
2560         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2561         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2562         trap cleanup_test32_mount EXIT
2563         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2564         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2565                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2566         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2567                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2568         cleanup_test32_mount
2569 }
2570 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2571
2572 test_32c() {
2573         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2574         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2575         trap cleanup_test32_mount EXIT
2576         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2577         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2578                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2579         test_mkdir -p $DIR/$tdir/d2/test_dir
2580         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2581                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2582         cleanup_test32_mount
2583 }
2584 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2585
2586 test_32d() {
2587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2588         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2589         trap cleanup_test32_mount EXIT
2590         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2591         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2592                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2593         test_mkdir -p $DIR/$tdir/d2/test_dir
2594         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2595                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2596         cleanup_test32_mount
2597 }
2598 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2599
2600 test_32e() {
2601         rm -fr $DIR/$tdir
2602         test_mkdir -p $DIR/$tdir/tmp
2603         local tmp_dir=$DIR/$tdir/tmp
2604         ln -s $DIR/$tdir $tmp_dir/symlink11
2605         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2606         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2607         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2608 }
2609 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2610
2611 test_32f() {
2612         rm -fr $DIR/$tdir
2613         test_mkdir -p $DIR/$tdir/tmp
2614         local tmp_dir=$DIR/$tdir/tmp
2615         ln -s $DIR/$tdir $tmp_dir/symlink11
2616         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2617         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2618         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2619 }
2620 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2621
2622 test_32g() {
2623         local tmp_dir=$DIR/$tdir/tmp
2624         test_mkdir -p $tmp_dir
2625         test_mkdir $DIR/${tdir}2
2626         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2627         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2628         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2629         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2630         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2631         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2632 }
2633 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2634
2635 test_32h() {
2636         rm -fr $DIR/$tdir $DIR/${tdir}2
2637         tmp_dir=$DIR/$tdir/tmp
2638         test_mkdir -p $tmp_dir
2639         test_mkdir $DIR/${tdir}2
2640         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2641         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2642         ls $tmp_dir/symlink12 || error "listing symlink12"
2643         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2644 }
2645 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2646
2647 test_32i() {
2648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2649         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2650         trap cleanup_test32_mount EXIT
2651         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2652         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2653                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2654         touch $DIR/$tdir/test_file
2655         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2656                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2657         cleanup_test32_mount
2658 }
2659 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2660
2661 test_32j() {
2662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2663         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2664         trap cleanup_test32_mount EXIT
2665         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2666         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2667                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2668         touch $DIR/$tdir/test_file
2669         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2670                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2671         cleanup_test32_mount
2672 }
2673 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2674
2675 test_32k() {
2676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2677         rm -fr $DIR/$tdir
2678         trap cleanup_test32_mount EXIT
2679         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2680         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2681                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2682         test_mkdir -p $DIR/$tdir/d2
2683         touch $DIR/$tdir/d2/test_file || error "touch failed"
2684         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2685                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2686         cleanup_test32_mount
2687 }
2688 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2689
2690 test_32l() {
2691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2692         rm -fr $DIR/$tdir
2693         trap cleanup_test32_mount EXIT
2694         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2695         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2696                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2697         test_mkdir -p $DIR/$tdir/d2
2698         touch $DIR/$tdir/d2/test_file || error "touch failed"
2699         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2700                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2701         cleanup_test32_mount
2702 }
2703 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2704
2705 test_32m() {
2706         rm -fr $DIR/d32m
2707         test_mkdir -p $DIR/d32m/tmp
2708         TMP_DIR=$DIR/d32m/tmp
2709         ln -s $DIR $TMP_DIR/symlink11
2710         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2711         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2712                 error "symlink11 not a link"
2713         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2714                 error "symlink01 not a link"
2715 }
2716 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2717
2718 test_32n() {
2719         rm -fr $DIR/d32n
2720         test_mkdir -p $DIR/d32n/tmp
2721         TMP_DIR=$DIR/d32n/tmp
2722         ln -s $DIR $TMP_DIR/symlink11
2723         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2724         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2725         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2726 }
2727 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2728
2729 test_32o() {
2730         touch $DIR/$tfile
2731         test_mkdir -p $DIR/d32o/tmp
2732         TMP_DIR=$DIR/d32o/tmp
2733         ln -s $DIR/$tfile $TMP_DIR/symlink12
2734         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2735         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2736                 error "symlink12 not a link"
2737         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2738         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2739                 error "$DIR/d32o/tmp/symlink12 not file type"
2740         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2741                 error "$DIR/d32o/symlink02 not file type"
2742 }
2743 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2744
2745 test_32p() {
2746         log 32p_1
2747         rm -fr $DIR/d32p
2748         log 32p_2
2749         rm -f $DIR/$tfile
2750         log 32p_3
2751         touch $DIR/$tfile
2752         log 32p_4
2753         test_mkdir -p $DIR/d32p/tmp
2754         log 32p_5
2755         TMP_DIR=$DIR/d32p/tmp
2756         log 32p_6
2757         ln -s $DIR/$tfile $TMP_DIR/symlink12
2758         log 32p_7
2759         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2760         log 32p_8
2761         cat $DIR/d32p/tmp/symlink12 ||
2762                 error "Can't open $DIR/d32p/tmp/symlink12"
2763         log 32p_9
2764         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2765         log 32p_10
2766 }
2767 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2768
2769 test_32q() {
2770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2771         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2772         trap cleanup_test32_mount EXIT
2773         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2774         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2775         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2776                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2777         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2778         cleanup_test32_mount
2779 }
2780 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2781
2782 test_32r() {
2783         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2784         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2785         trap cleanup_test32_mount EXIT
2786         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2787         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2788         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2789                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2790         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2791         cleanup_test32_mount
2792 }
2793 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2794
2795 test_33aa() {
2796         rm -f $DIR/$tfile
2797         touch $DIR/$tfile
2798         chmod 444 $DIR/$tfile
2799         chown $RUNAS_ID $DIR/$tfile
2800         log 33_1
2801         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2802         log 33_2
2803 }
2804 run_test 33aa "write file with mode 444 (should return error)"
2805
2806 test_33a() {
2807         rm -fr $DIR/$tdir
2808         test_mkdir $DIR/$tdir
2809         chown $RUNAS_ID $DIR/$tdir
2810         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2811                 error "$RUNAS create $tdir/$tfile failed"
2812         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2813                 error "open RDWR" || true
2814 }
2815 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2816
2817 test_33b() {
2818         rm -fr $DIR/$tdir
2819         test_mkdir $DIR/$tdir
2820         chown $RUNAS_ID $DIR/$tdir
2821         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2822 }
2823 run_test 33b "test open file with malformed flags (No panic)"
2824
2825 test_33c() {
2826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2827         local ostnum
2828         local ostname
2829         local write_bytes
2830         local all_zeros
2831
2832         remote_ost_nodsh && skip "remote OST with nodsh" && return
2833         all_zeros=:
2834         rm -fr $DIR/$tdir
2835         test_mkdir $DIR/$tdir
2836         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2837
2838         sync
2839         for ostnum in $(seq $OSTCOUNT); do
2840                 # test-framework's OST numbering is one-based, while Lustre's
2841                 # is zero-based
2842                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2843                 # Parsing llobdstat's output sucks; we could grep the /proc
2844                 # path, but that's likely to not be as portable as using the
2845                 # llobdstat utility.  So we parse lctl output instead.
2846                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2847                         obdfilter/$ostname/stats |
2848                         awk '/^write_bytes/ {print $7}' )
2849                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2850                 if (( ${write_bytes:-0} > 0 ))
2851                 then
2852                         all_zeros=false
2853                         break;
2854                 fi
2855         done
2856
2857         $all_zeros || return 0
2858
2859         # Write four bytes
2860         echo foo > $DIR/$tdir/bar
2861         # Really write them
2862         sync
2863
2864         # Total up write_bytes after writing.  We'd better find non-zeros.
2865         for ostnum in $(seq $OSTCOUNT); do
2866                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2867                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2868                         obdfilter/$ostname/stats |
2869                         awk '/^write_bytes/ {print $7}' )
2870                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2871                 if (( ${write_bytes:-0} > 0 ))
2872                 then
2873                         all_zeros=false
2874                         break;
2875                 fi
2876         done
2877
2878         if $all_zeros
2879         then
2880                 for ostnum in $(seq $OSTCOUNT); do
2881                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2882                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2883                         do_facet ost$ostnum lctl get_param -n \
2884                                 obdfilter/$ostname/stats
2885                 done
2886                 error "OST not keeping write_bytes stats (b22312)"
2887         fi
2888 }
2889 run_test 33c "test llobdstat and write_bytes"
2890
2891 test_33d() {
2892         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2894         local MDTIDX=1
2895         local remote_dir=$DIR/$tdir/remote_dir
2896
2897         test_mkdir $DIR/$tdir
2898         $LFS mkdir -i $MDTIDX $remote_dir ||
2899                 error "create remote directory failed"
2900
2901         touch $remote_dir/$tfile
2902         chmod 444 $remote_dir/$tfile
2903         chown $RUNAS_ID $remote_dir/$tfile
2904
2905         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2906
2907         chown $RUNAS_ID $remote_dir
2908         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2909                                         error "create" || true
2910         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2911                                     error "open RDWR" || true
2912         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2913 }
2914 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2915
2916 test_33e() {
2917         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2918
2919         mkdir $DIR/$tdir
2920
2921         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2922         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2923         mkdir $DIR/$tdir/local_dir
2924
2925         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2926         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2927         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2928
2929         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2930                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2931
2932         rmdir $DIR/$tdir/* || error "rmdir failed"
2933
2934         umask 777
2935         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2936         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2937         mkdir $DIR/$tdir/local_dir
2938
2939         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2940         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2941         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2942
2943         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2944                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2945
2946         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2947
2948         umask 000
2949         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2950         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2951         mkdir $DIR/$tdir/local_dir
2952
2953         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2954         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2955         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2956
2957         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2958                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2959 }
2960 run_test 33e "mkdir and striped directory should have same mode"
2961
2962 cleanup_33f() {
2963         trap 0
2964         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2965 }
2966
2967 test_33f() {
2968         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2969         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2970
2971         mkdir $DIR/$tdir
2972         chmod go+rwx $DIR/$tdir
2973         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2974         trap cleanup_33f EXIT
2975
2976         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2977                 error "cannot create striped directory"
2978
2979         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2980                 error "cannot create files in striped directory"
2981
2982         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2983                 error "cannot remove files in striped directory"
2984
2985         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2986                 error "cannot remove striped directory"
2987
2988         cleanup_33f
2989 }
2990 run_test 33f "nonroot user can create, access, and remove a striped directory"
2991
2992 test_33g() {
2993         mkdir -p $DIR/$tdir/dir2
2994
2995         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2996         echo $err
2997         [[ $err =~ "exists" ]] || error "Not exists error"
2998 }
2999 run_test 33g "nonroot user create already existing root created file"
3000
3001 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3002 test_34a() {
3003         rm -f $DIR/f34
3004         $MCREATE $DIR/f34 || error "mcreate failed"
3005         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3006                 error "getstripe failed"
3007         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3008         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3009                 error "getstripe failed"
3010         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3011                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3012 }
3013 run_test 34a "truncate file that has not been opened ==========="
3014
3015 test_34b() {
3016         [ ! -f $DIR/f34 ] && test_34a
3017         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3018                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3019         $OPENFILE -f O_RDONLY $DIR/f34
3020         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3021                 error "getstripe failed"
3022         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3023                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3024 }
3025 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3026
3027 test_34c() {
3028         [ ! -f $DIR/f34 ] && test_34a
3029         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3030                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3031         $OPENFILE -f O_RDWR $DIR/f34
3032         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3033         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3034                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3035 }
3036 run_test 34c "O_RDWR opening file-with-size works =============="
3037
3038 test_34d() {
3039         [ ! -f $DIR/f34 ] && test_34a
3040         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3041                 error "dd failed"
3042         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3043                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3044         rm $DIR/f34
3045 }
3046 run_test 34d "write to sparse file ============================="
3047
3048 test_34e() {
3049         rm -f $DIR/f34e
3050         $MCREATE $DIR/f34e || error "mcreate failed"
3051         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3052         $CHECKSTAT -s 1000 $DIR/f34e ||
3053                 error "Size of $DIR/f34e not equal to 1000 bytes"
3054         $OPENFILE -f O_RDWR $DIR/f34e
3055         $CHECKSTAT -s 1000 $DIR/f34e ||
3056                 error "Size of $DIR/f34e not equal to 1000 bytes"
3057 }
3058 run_test 34e "create objects, some with size and some without =="
3059
3060 test_34f() { # bug 6242, 6243
3061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3062         SIZE34F=48000
3063         rm -f $DIR/f34f
3064         $MCREATE $DIR/f34f || error "mcreate failed"
3065         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3066         dd if=$DIR/f34f of=$TMP/f34f
3067         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3068         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3069         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3070         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3071         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3072 }
3073 run_test 34f "read from a file with no objects until EOF ======="
3074
3075 test_34g() {
3076         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3077         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3078                 error "dd failed"
3079         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3080         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3081                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3082         cancel_lru_locks osc
3083         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3084                 error "wrong size after lock cancel"
3085
3086         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3087         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3088                 error "expanding truncate failed"
3089         cancel_lru_locks osc
3090         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3091                 error "wrong expanded size after lock cancel"
3092 }
3093 run_test 34g "truncate long file ==============================="
3094
3095 test_34h() {
3096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3097         local gid=10
3098         local sz=1000
3099
3100         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3101         sync # Flush the cache so that multiop below does not block on cache
3102              # flush when getting the group lock
3103         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3104         MULTIPID=$!
3105
3106         # Since just timed wait is not good enough, let's do a sync write
3107         # that way we are sure enough time for a roundtrip + processing
3108         # passed + 2 seconds of extra margin.
3109         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
3110         rm $DIR/${tfile}-1
3111         sleep 2
3112
3113         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3114                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3115                 kill -9 $MULTIPID
3116         fi
3117         wait $MULTIPID
3118         local nsz=`stat -c %s $DIR/$tfile`
3119         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3120 }
3121 run_test 34h "ftruncate file under grouplock should not block"
3122
3123 test_35a() {
3124         cp /bin/sh $DIR/f35a
3125         chmod 444 $DIR/f35a
3126         chown $RUNAS_ID $DIR/f35a
3127         $RUNAS $DIR/f35a && error || true
3128         rm $DIR/f35a
3129 }
3130 run_test 35a "exec file with mode 444 (should return and not leak)"
3131
3132 test_36a() {
3133         rm -f $DIR/f36
3134         utime $DIR/f36 || error "utime failed for MDS"
3135 }
3136 run_test 36a "MDS utime check (mknod, utime)"
3137
3138 test_36b() {
3139         echo "" > $DIR/f36
3140         utime $DIR/f36 || error "utime failed for OST"
3141 }
3142 run_test 36b "OST utime check (open, utime)"
3143
3144 test_36c() {
3145         rm -f $DIR/d36/f36
3146         test_mkdir $DIR/d36
3147         chown $RUNAS_ID $DIR/d36
3148         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3149 }
3150 run_test 36c "non-root MDS utime check (mknod, utime)"
3151
3152 test_36d() {
3153         [ ! -d $DIR/d36 ] && test_36c
3154         echo "" > $DIR/d36/f36
3155         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3156 }
3157 run_test 36d "non-root OST utime check (open, utime)"
3158
3159 test_36e() {
3160         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3161         test_mkdir $DIR/$tdir
3162         touch $DIR/$tdir/$tfile
3163         $RUNAS utime $DIR/$tdir/$tfile &&
3164                 error "utime worked, expected failure" || true
3165 }
3166 run_test 36e "utime on non-owned file (should return error)"
3167
3168 subr_36fh() {
3169         local fl="$1"
3170         local LANG_SAVE=$LANG
3171         local LC_LANG_SAVE=$LC_LANG
3172         export LANG=C LC_LANG=C # for date language
3173
3174         DATESTR="Dec 20  2000"
3175         test_mkdir $DIR/$tdir
3176         lctl set_param fail_loc=$fl
3177         date; date +%s
3178         cp /etc/hosts $DIR/$tdir/$tfile
3179         sync & # write RPC generated with "current" inode timestamp, but delayed
3180         sleep 1
3181         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3182         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3183         cancel_lru_locks osc
3184         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3185         date; date +%s
3186         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3187                 echo "BEFORE: $LS_BEFORE" && \
3188                 echo "AFTER : $LS_AFTER" && \
3189                 echo "WANT  : $DATESTR" && \
3190                 error "$DIR/$tdir/$tfile timestamps changed" || true
3191
3192         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3193 }
3194
3195 test_36f() {
3196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3197         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3198         subr_36fh "0x80000214"
3199 }
3200 run_test 36f "utime on file racing with OST BRW write =========="
3201
3202 test_36g() {
3203         remote_ost_nodsh && skip "remote OST with nodsh" && return
3204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3205         local fmd_max_age
3206         local fmd_before
3207         local fmd_after
3208
3209         test_mkdir $DIR/$tdir
3210         fmd_max_age=$(do_facet ost1 \
3211                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3212                 head -n 1")
3213
3214         fmd_before=$(do_facet ost1 \
3215                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3216         touch $DIR/$tdir/$tfile
3217         sleep $((fmd_max_age + 12))
3218         fmd_after=$(do_facet ost1 \
3219                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3220
3221         echo "fmd_before: $fmd_before"
3222         echo "fmd_after: $fmd_after"
3223         [[ $fmd_after -gt $fmd_before ]] &&
3224                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3225                 error "fmd didn't expire after ping" || true
3226 }
3227 run_test 36g "filter mod data cache expiry ====================="
3228
3229 test_36h() {
3230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3231         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3232         subr_36fh "0x80000227"
3233 }
3234 run_test 36h "utime on file racing with OST BRW write =========="
3235
3236 test_36i() {
3237         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3238
3239         test_mkdir $DIR/$tdir
3240         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3241
3242         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3243         local new_mtime=$((mtime + 200))
3244
3245         #change Modify time of striped dir
3246         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3247                         error "change mtime failed"
3248
3249         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3250
3251         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3252 }
3253 run_test 36i "change mtime on striped directory"
3254
3255 # test_37 - duplicate with tests 32q 32r
3256
3257 test_38() {
3258         local file=$DIR/$tfile
3259         touch $file
3260         openfile -f O_DIRECTORY $file
3261         local RC=$?
3262         local ENOTDIR=20
3263         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3264         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3265 }
3266 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3267
3268 test_39a() { # was test_39
3269         touch $DIR/$tfile
3270         touch $DIR/${tfile}2
3271 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3272 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3273 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3274         sleep 2
3275         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3276         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3277                 echo "mtime"
3278                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3279                 echo "atime"
3280                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3281                 echo "ctime"
3282                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3283                 error "O_TRUNC didn't change timestamps"
3284         fi
3285 }
3286 run_test 39a "mtime changed on create"
3287
3288 test_39b() {
3289         test_mkdir -c1 $DIR/$tdir
3290         cp -p /etc/passwd $DIR/$tdir/fopen
3291         cp -p /etc/passwd $DIR/$tdir/flink
3292         cp -p /etc/passwd $DIR/$tdir/funlink
3293         cp -p /etc/passwd $DIR/$tdir/frename
3294         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3295
3296         sleep 1
3297         echo "aaaaaa" >> $DIR/$tdir/fopen
3298         echo "aaaaaa" >> $DIR/$tdir/flink
3299         echo "aaaaaa" >> $DIR/$tdir/funlink
3300         echo "aaaaaa" >> $DIR/$tdir/frename
3301
3302         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3303         local link_new=`stat -c %Y $DIR/$tdir/flink`
3304         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3305         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3306
3307         cat $DIR/$tdir/fopen > /dev/null
3308         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3309         rm -f $DIR/$tdir/funlink2
3310         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3311
3312         for (( i=0; i < 2; i++ )) ; do
3313                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3314                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3315                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3316                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3317
3318                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3319                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3320                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3321                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3322
3323                 cancel_lru_locks osc
3324                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3325         done
3326 }
3327 run_test 39b "mtime change on open, link, unlink, rename  ======"
3328
3329 # this should be set to past
3330 TEST_39_MTIME=`date -d "1 year ago" +%s`
3331
3332 # bug 11063
3333 test_39c() {
3334         touch $DIR1/$tfile
3335         sleep 2
3336         local mtime0=`stat -c %Y $DIR1/$tfile`
3337
3338         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3339         local mtime1=`stat -c %Y $DIR1/$tfile`
3340         [ "$mtime1" = $TEST_39_MTIME ] || \
3341                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3342
3343         local d1=`date +%s`
3344         echo hello >> $DIR1/$tfile
3345         local d2=`date +%s`
3346         local mtime2=`stat -c %Y $DIR1/$tfile`
3347         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3348                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3349
3350         mv $DIR1/$tfile $DIR1/$tfile-1
3351
3352         for (( i=0; i < 2; i++ )) ; do
3353                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3354                 [ "$mtime2" = "$mtime3" ] || \
3355                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3356
3357                 cancel_lru_locks osc
3358                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3359         done
3360 }
3361 run_test 39c "mtime change on rename ==========================="
3362
3363 # bug 21114
3364 test_39d() {
3365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3366         touch $DIR1/$tfile
3367
3368         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3369
3370         for (( i=0; i < 2; i++ )) ; do
3371                 local mtime=`stat -c %Y $DIR1/$tfile`
3372                 [ $mtime = $TEST_39_MTIME ] || \
3373                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3374
3375                 cancel_lru_locks osc
3376                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3377         done
3378 }
3379 run_test 39d "create, utime, stat =============================="
3380
3381 # bug 21114
3382 test_39e() {
3383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3384         touch $DIR1/$tfile
3385         local mtime1=`stat -c %Y $DIR1/$tfile`
3386
3387         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3388
3389         for (( i=0; i < 2; i++ )) ; do
3390                 local mtime2=`stat -c %Y $DIR1/$tfile`
3391                 [ $mtime2 = $TEST_39_MTIME ] || \
3392                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3393
3394                 cancel_lru_locks osc
3395                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3396         done
3397 }
3398 run_test 39e "create, stat, utime, stat ========================"
3399
3400 # bug 21114
3401 test_39f() {
3402         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3403         touch $DIR1/$tfile
3404         mtime1=`stat -c %Y $DIR1/$tfile`
3405
3406         sleep 2
3407         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3408
3409         for (( i=0; i < 2; i++ )) ; do
3410                 local mtime2=`stat -c %Y $DIR1/$tfile`
3411                 [ $mtime2 = $TEST_39_MTIME ] || \
3412                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3413
3414                 cancel_lru_locks osc
3415                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3416         done
3417 }
3418 run_test 39f "create, stat, sleep, utime, stat ================="
3419
3420 # bug 11063
3421 test_39g() {
3422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3423         echo hello >> $DIR1/$tfile
3424         local mtime1=`stat -c %Y $DIR1/$tfile`
3425
3426         sleep 2
3427         chmod o+r $DIR1/$tfile
3428
3429         for (( i=0; i < 2; i++ )) ; do
3430                 local mtime2=`stat -c %Y $DIR1/$tfile`
3431                 [ "$mtime1" = "$mtime2" ] || \
3432                         error "lost mtime: $mtime2, should be $mtime1"
3433
3434                 cancel_lru_locks osc
3435                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3436         done
3437 }
3438 run_test 39g "write, chmod, stat ==============================="
3439
3440 # bug 11063
3441 test_39h() {
3442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3443         touch $DIR1/$tfile
3444         sleep 1
3445
3446         local d1=`date`
3447         echo hello >> $DIR1/$tfile
3448         local mtime1=`stat -c %Y $DIR1/$tfile`
3449
3450         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3451         local d2=`date`
3452         if [ "$d1" != "$d2" ]; then
3453                 echo "write and touch not within one second"
3454         else
3455                 for (( i=0; i < 2; i++ )) ; do
3456                         local mtime2=`stat -c %Y $DIR1/$tfile`
3457                         [ "$mtime2" = $TEST_39_MTIME ] || \
3458                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3459
3460                         cancel_lru_locks osc
3461                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3462                 done
3463         fi
3464 }
3465 run_test 39h "write, utime within one second, stat ============="
3466
3467 test_39i() {
3468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3469         touch $DIR1/$tfile
3470         sleep 1
3471
3472         echo hello >> $DIR1/$tfile
3473         local mtime1=`stat -c %Y $DIR1/$tfile`
3474
3475         mv $DIR1/$tfile $DIR1/$tfile-1
3476
3477         for (( i=0; i < 2; i++ )) ; do
3478                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3479
3480                 [ "$mtime1" = "$mtime2" ] || \
3481                         error "lost mtime: $mtime2, should be $mtime1"
3482
3483                 cancel_lru_locks osc
3484                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3485         done
3486 }
3487 run_test 39i "write, rename, stat =============================="
3488
3489 test_39j() {
3490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3491         start_full_debug_logging
3492         touch $DIR1/$tfile
3493         sleep 1
3494
3495         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3496         lctl set_param fail_loc=0x80000412
3497         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3498                 error "multiop failed"
3499         local multipid=$!
3500         local mtime1=`stat -c %Y $DIR1/$tfile`
3501
3502         mv $DIR1/$tfile $DIR1/$tfile-1
3503
3504         kill -USR1 $multipid
3505         wait $multipid || error "multiop close failed"
3506
3507         for (( i=0; i < 2; i++ )) ; do
3508                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3509                 [ "$mtime1" = "$mtime2" ] ||
3510                         error "mtime is lost on close: $mtime2, " \
3511                               "should be $mtime1"
3512
3513                 cancel_lru_locks osc
3514                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3515         done
3516         lctl set_param fail_loc=0
3517         stop_full_debug_logging
3518 }
3519 run_test 39j "write, rename, close, stat ======================="
3520
3521 test_39k() {
3522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3523         touch $DIR1/$tfile
3524         sleep 1
3525
3526         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3527         local multipid=$!
3528         local mtime1=`stat -c %Y $DIR1/$tfile`
3529
3530         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3531
3532         kill -USR1 $multipid
3533         wait $multipid || error "multiop close failed"
3534
3535         for (( i=0; i < 2; i++ )) ; do
3536                 local mtime2=`stat -c %Y $DIR1/$tfile`
3537
3538                 [ "$mtime2" = $TEST_39_MTIME ] || \
3539                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3540
3541                 cancel_lru_locks osc
3542                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3543         done
3544 }
3545 run_test 39k "write, utime, close, stat ========================"
3546
3547 # this should be set to future
3548 TEST_39_ATIME=`date -d "1 year" +%s`
3549
3550 test_39l() {
3551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3552         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3553         local atime_diff=$(do_facet $SINGLEMDS \
3554                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3555         rm -rf $DIR/$tdir
3556         mkdir -p $DIR/$tdir
3557
3558         # test setting directory atime to future
3559         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3560         local atime=$(stat -c %X $DIR/$tdir)
3561         [ "$atime" = $TEST_39_ATIME ] ||
3562                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3563
3564         # test setting directory atime from future to now
3565         local now=$(date +%s)
3566         touch -a -d @$now $DIR/$tdir
3567
3568         atime=$(stat -c %X $DIR/$tdir)
3569         [ "$atime" -eq "$now"  ] ||
3570                 error "atime is not updated from future: $atime, $now"
3571
3572         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3573         sleep 3
3574
3575         # test setting directory atime when now > dir atime + atime_diff
3576         local d1=$(date +%s)
3577         ls $DIR/$tdir
3578         local d2=$(date +%s)
3579         cancel_lru_locks mdc
3580         atime=$(stat -c %X $DIR/$tdir)
3581         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3582                 error "atime is not updated  : $atime, should be $d2"
3583
3584         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3585         sleep 3
3586
3587         # test not setting directory atime when now < dir atime + atime_diff
3588         ls $DIR/$tdir
3589         cancel_lru_locks mdc
3590         atime=$(stat -c %X $DIR/$tdir)
3591         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3592                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3593
3594         do_facet $SINGLEMDS \
3595                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3596 }
3597 run_test 39l "directory atime update ==========================="
3598
3599 test_39m() {
3600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3601         touch $DIR1/$tfile
3602         sleep 2
3603         local far_past_mtime=$(date -d "May 29 1953" +%s)
3604         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3605
3606         touch -m -d @$far_past_mtime $DIR1/$tfile
3607         touch -a -d @$far_past_atime $DIR1/$tfile
3608
3609         for (( i=0; i < 2; i++ )) ; do
3610                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3611                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3612                         error "atime or mtime set incorrectly"
3613
3614                 cancel_lru_locks osc
3615                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3616         done
3617 }
3618 run_test 39m "test atime and mtime before 1970"
3619
3620 test_39n() { # LU-3832
3621         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3622         local atime_diff=$(do_facet $SINGLEMDS \
3623                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3624         local atime0
3625         local atime1
3626         local atime2
3627
3628         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3629
3630         rm -rf $DIR/$tfile
3631         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3632         atime0=$(stat -c %X $DIR/$tfile)
3633
3634         sleep 5
3635         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3636         atime1=$(stat -c %X $DIR/$tfile)
3637
3638         sleep 5
3639         cancel_lru_locks mdc
3640         cancel_lru_locks osc
3641         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3642         atime2=$(stat -c %X $DIR/$tfile)
3643
3644         do_facet $SINGLEMDS \
3645                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3646
3647         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3648         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3649 }
3650 run_test 39n "check that O_NOATIME is honored"
3651
3652 test_39o() {
3653         TESTDIR=$DIR/$tdir/$tfile
3654         [ -e $TESTDIR ] && rm -rf $TESTDIR
3655         mkdir -p $TESTDIR
3656         cd $TESTDIR
3657         links1=2
3658         ls
3659         mkdir a b
3660         ls
3661         links2=$(stat -c %h .)
3662         [ $(($links1 + 2)) != $links2 ] &&
3663                 error "wrong links count $(($links1 + 2)) != $links2"
3664         rmdir b
3665         links3=$(stat -c %h .)
3666         [ $(($links1 + 1)) != $links3 ] &&
3667                 error "wrong links count $links1 != $links3"
3668         return 0
3669 }
3670 run_test 39o "directory cached attributes updated after create"
3671
3672 test_39p() {
3673         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3674         local MDTIDX=1
3675         TESTDIR=$DIR/$tdir/$tdir
3676         [ -e $TESTDIR ] && rm -rf $TESTDIR
3677         test_mkdir -p $TESTDIR
3678         cd $TESTDIR
3679         links1=2
3680         ls
3681         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3682         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3683         ls
3684         links2=$(stat -c %h .)
3685         [ $(($links1 + 2)) != $links2 ] &&
3686                 error "wrong links count $(($links1 + 2)) != $links2"
3687         rmdir remote_dir2
3688         links3=$(stat -c %h .)
3689         [ $(($links1 + 1)) != $links3 ] &&
3690                 error "wrong links count $links1 != $links3"
3691         return 0
3692 }
3693 run_test 39p "remote directory cached attributes updated after create ========"
3694
3695
3696 test_39q() { # LU-8041
3697         local testdir=$DIR/$tdir
3698         mkdir -p $testdir
3699         multiop_bg_pause $testdir D_c || error "multiop failed"
3700         local multipid=$!
3701         cancel_lru_locks mdc
3702         kill -USR1 $multipid
3703         local atime=$(stat -c %X $testdir)
3704         [ "$atime" -ne 0 ] || error "atime is zero"
3705 }
3706 run_test 39q "close won't zero out atime"
3707
3708 test_40() {
3709         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3710         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3711                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3712         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3713                 error "$tfile is not 4096 bytes in size"
3714 }
3715 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3716
3717 test_41() {
3718         # bug 1553
3719         small_write $DIR/f41 18
3720 }
3721 run_test 41 "test small file write + fstat ====================="
3722
3723 count_ost_writes() {
3724         lctl get_param -n ${OSC}.*.stats |
3725                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3726                         END { printf("%0.0f", writes) }'
3727 }
3728
3729 # decent default
3730 WRITEBACK_SAVE=500
3731 DIRTY_RATIO_SAVE=40
3732 MAX_DIRTY_RATIO=50
3733 BG_DIRTY_RATIO_SAVE=10
3734 MAX_BG_DIRTY_RATIO=25
3735
3736 start_writeback() {
3737         trap 0
3738         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3739         # dirty_ratio, dirty_background_ratio
3740         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3741                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3742                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3743                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3744         else
3745                 # if file not here, we are a 2.4 kernel
3746                 kill -CONT `pidof kupdated`
3747         fi
3748 }
3749
3750 stop_writeback() {
3751         # setup the trap first, so someone cannot exit the test at the
3752         # exact wrong time and mess up a machine
3753         trap start_writeback EXIT
3754         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3755         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3756                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3757                 sysctl -w vm.dirty_writeback_centisecs=0
3758                 sysctl -w vm.dirty_writeback_centisecs=0
3759                 # save and increase /proc/sys/vm/dirty_ratio
3760                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3761                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3762                 # save and increase /proc/sys/vm/dirty_background_ratio
3763                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3764                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3765         else
3766                 # if file not here, we are a 2.4 kernel
3767                 kill -STOP `pidof kupdated`
3768         fi
3769 }
3770
3771 # ensure that all stripes have some grant before we test client-side cache
3772 setup_test42() {
3773         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3774                 dd if=/dev/zero of=$i bs=4k count=1
3775                 rm $i
3776         done
3777 }
3778
3779 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3780 # file truncation, and file removal.
3781 test_42a() {
3782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3783         setup_test42
3784         cancel_lru_locks $OSC
3785         stop_writeback
3786         sync; sleep 1; sync # just to be safe
3787         BEFOREWRITES=`count_ost_writes`
3788         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3789         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3790         AFTERWRITES=`count_ost_writes`
3791         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3792                 error "$BEFOREWRITES < $AFTERWRITES"
3793         start_writeback
3794 }
3795 run_test 42a "ensure that we don't flush on close"
3796
3797 test_42b() {
3798         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3799         setup_test42
3800         cancel_lru_locks $OSC
3801         stop_writeback
3802         sync
3803         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3804         BEFOREWRITES=$(count_ost_writes)
3805         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3806         AFTERWRITES=$(count_ost_writes)
3807         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3808                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3809         fi
3810         BEFOREWRITES=$(count_ost_writes)
3811         sync || error "sync: $?"
3812         AFTERWRITES=$(count_ost_writes)
3813         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3814                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3815         fi
3816         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3817         start_writeback
3818         return 0
3819 }
3820 run_test 42b "test destroy of file with cached dirty data ======"
3821
3822 # if these tests just want to test the effect of truncation,
3823 # they have to be very careful.  consider:
3824 # - the first open gets a {0,EOF}PR lock
3825 # - the first write conflicts and gets a {0, count-1}PW
3826 # - the rest of the writes are under {count,EOF}PW
3827 # - the open for truncate tries to match a {0,EOF}PR
3828 #   for the filesize and cancels the PWs.
3829 # any number of fixes (don't get {0,EOF} on open, match
3830 # composite locks, do smarter file size management) fix
3831 # this, but for now we want these tests to verify that
3832 # the cancellation with truncate intent works, so we
3833 # start the file with a full-file pw lock to match against
3834 # until the truncate.
3835 trunc_test() {
3836         test=$1
3837         file=$DIR/$test
3838         offset=$2
3839         cancel_lru_locks $OSC
3840         stop_writeback
3841         # prime the file with 0,EOF PW to match
3842         touch $file
3843         $TRUNCATE $file 0
3844         sync; sync
3845         # now the real test..
3846         dd if=/dev/zero of=$file bs=1024 count=100
3847         BEFOREWRITES=`count_ost_writes`
3848         $TRUNCATE $file $offset
3849         cancel_lru_locks $OSC
3850         AFTERWRITES=`count_ost_writes`
3851         start_writeback
3852 }
3853
3854 test_42c() {
3855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3856         trunc_test 42c 1024
3857         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3858             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3859         rm $file
3860 }
3861 run_test 42c "test partial truncate of file with cached dirty data"
3862
3863 test_42d() {
3864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3865         trunc_test 42d 0
3866         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3867             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3868         rm $file
3869 }
3870 run_test 42d "test complete truncate of file with cached dirty data"
3871
3872 test_42e() { # bug22074
3873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3874         local TDIR=$DIR/${tdir}e
3875         local pagesz=$(page_size)
3876         local pages=16 # hardcoded 16 pages, don't change it.
3877         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3878         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3879         local max_dirty_mb
3880         local warmup_files
3881
3882         test_mkdir $DIR/${tdir}e
3883         $SETSTRIPE -c 1 $TDIR
3884         createmany -o $TDIR/f $files
3885
3886         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3887
3888         # we assume that with $OSTCOUNT files, at least one of them will
3889         # be allocated on OST0.
3890         warmup_files=$((OSTCOUNT * max_dirty_mb))
3891         createmany -o $TDIR/w $warmup_files
3892
3893         # write a large amount of data into one file and sync, to get good
3894         # avail_grant number from OST.
3895         for ((i=0; i<$warmup_files; i++)); do
3896                 idx=$($GETSTRIPE -i $TDIR/w$i)
3897                 [ $idx -ne 0 ] && continue
3898                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3899                 break
3900         done
3901         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3902         sync
3903         $LCTL get_param $proc_osc0/cur_dirty_bytes
3904         $LCTL get_param $proc_osc0/cur_grant_bytes
3905
3906         # create as much dirty pages as we can while not to trigger the actual
3907         # RPCs directly. but depends on the env, VFS may trigger flush during this
3908         # period, hopefully we are good.
3909         for ((i=0; i<$warmup_files; i++)); do
3910                 idx=$($GETSTRIPE -i $TDIR/w$i)
3911                 [ $idx -ne 0 ] && continue
3912                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3913         done
3914         $LCTL get_param $proc_osc0/cur_dirty_bytes
3915         $LCTL get_param $proc_osc0/cur_grant_bytes
3916
3917         # perform the real test
3918         $LCTL set_param $proc_osc0/rpc_stats 0
3919         for ((;i<$files; i++)); do
3920                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3921                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3922         done
3923         sync
3924         $LCTL get_param $proc_osc0/rpc_stats
3925
3926         local percent=0
3927         local have_ppr=false
3928         $LCTL get_param $proc_osc0/rpc_stats |
3929                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3930                         # skip lines until we are at the RPC histogram data
3931                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3932                         $have_ppr || continue
3933
3934                         # we only want the percent stat for < 16 pages
3935                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3936
3937                         percent=$((percent + WPCT))
3938                         if [[ $percent -gt 15 ]]; then
3939                                 error "less than 16-pages write RPCs" \
3940                                       "$percent% > 15%"
3941                                 break
3942                         fi
3943                 done
3944         rm -rf $TDIR
3945 }
3946 run_test 42e "verify sub-RPC writes are not done synchronously"
3947
3948 test_43A() { # was test_43
3949         test_mkdir $DIR/$tdir
3950         cp -p /bin/ls $DIR/$tdir/$tfile
3951         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3952         pid=$!
3953         # give multiop a chance to open
3954         sleep 1
3955
3956         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3957         kill -USR1 $pid
3958 }
3959 run_test 43A "execution of file opened for write should return -ETXTBSY"
3960
3961 test_43a() {
3962         test_mkdir $DIR/$tdir
3963         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3964                 cp -p multiop $DIR/$tdir/multiop
3965         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3966                 error "multiop open $TMP/$tfile.junk failed"
3967         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3968         MULTIOP_PID=$!
3969         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3970         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3971         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3972 }
3973 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3974
3975 test_43b() {
3976         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3977         test_mkdir $DIR/$tdir
3978         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3979                 cp -p multiop $DIR/$tdir/multiop
3980         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3981                 error "multiop open $TMP/$tfile.junk failed"
3982         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3983         MULTIOP_PID=$!
3984         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3985         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3986         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3987 }
3988 run_test 43b "truncate of file being executed should return -ETXTBSY"
3989
3990 test_43c() {
3991         local testdir="$DIR/$tdir"
3992         test_mkdir $testdir
3993         cp $SHELL $testdir/
3994         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3995                 ( cd $testdir && md5sum -c )
3996 }
3997 run_test 43c "md5sum of copy into lustre"
3998
3999 test_44A() { # was test_44
4000         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
4001         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4002         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4003 }
4004 run_test 44A "zero length read from a sparse stripe"
4005
4006 test_44a() {
4007         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4008                 awk '{ print $2 }')
4009         [ -z "$nstripe" ] && skip "can't get stripe info" && return
4010         [[ $nstripe -gt $OSTCOUNT ]] &&
4011             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
4012             return
4013         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4014                 awk '{ print $2 }')
4015         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4016                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4017                         awk '{ print $2 }')
4018         fi
4019
4020         OFFSETS="0 $((stride/2)) $((stride-1))"
4021         for offset in $OFFSETS; do
4022                 for i in $(seq 0 $((nstripe-1))); do
4023                         local GLOBALOFFSETS=""
4024                         # size in Bytes
4025                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4026                         local myfn=$DIR/d44a-$size
4027                         echo "--------writing $myfn at $size"
4028                         ll_sparseness_write $myfn $size ||
4029                                 error "ll_sparseness_write"
4030                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4031                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4032                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4033
4034                         for j in $(seq 0 $((nstripe-1))); do
4035                                 # size in Bytes
4036                                 size=$((((j + $nstripe )*$stride + $offset)))
4037                                 ll_sparseness_write $myfn $size ||
4038                                         error "ll_sparseness_write"
4039                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4040                         done
4041                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4042                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4043                         rm -f $myfn
4044                 done
4045         done
4046 }
4047 run_test 44a "test sparse pwrite ==============================="
4048
4049 dirty_osc_total() {
4050         tot=0
4051         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4052                 tot=$(($tot + $d))
4053         done
4054         echo $tot
4055 }
4056 do_dirty_record() {
4057         before=`dirty_osc_total`
4058         echo executing "\"$*\""
4059         eval $*
4060         after=`dirty_osc_total`
4061         echo before $before, after $after
4062 }
4063 test_45() {
4064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4065         f="$DIR/f45"
4066         # Obtain grants from OST if it supports it
4067         echo blah > ${f}_grant
4068         stop_writeback
4069         sync
4070         do_dirty_record "echo blah > $f"
4071         [[ $before -eq $after ]] && error "write wasn't cached"
4072         do_dirty_record "> $f"
4073         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4074         do_dirty_record "echo blah > $f"
4075         [[ $before -eq $after ]] && error "write wasn't cached"
4076         do_dirty_record "sync"
4077         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4078         do_dirty_record "echo blah > $f"
4079         [[ $before -eq $after ]] && error "write wasn't cached"
4080         do_dirty_record "cancel_lru_locks osc"
4081         [[ $before -gt $after ]] ||
4082                 error "lock cancellation didn't lower dirty count"
4083         start_writeback
4084 }
4085 run_test 45 "osc io page accounting ============================"
4086
4087 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4088 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4089 # objects offset and an assert hit when an rpc was built with 1023's mapped
4090 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4091 test_46() {
4092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4093         f="$DIR/f46"
4094         stop_writeback
4095         sync
4096         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4097         sync
4098         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
4099         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4100         sync
4101         start_writeback
4102 }
4103 run_test 46 "dirtying a previously written page ================"
4104
4105 # test_47 is removed "Device nodes check" is moved to test_28
4106
4107 test_48a() { # bug 2399
4108         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4109         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4110                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
4111                 return
4112         test_mkdir $DIR/$tdir
4113         cd $DIR/$tdir
4114         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4115         test_mkdir $DIR/$tdir
4116         touch foo || error "'touch foo' failed after recreating cwd"
4117         test_mkdir bar
4118         touch .foo || error "'touch .foo' failed after recreating cwd"
4119         test_mkdir .bar
4120         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4121         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4122         cd . || error "'cd .' failed after recreating cwd"
4123         mkdir . && error "'mkdir .' worked after recreating cwd"
4124         rmdir . && error "'rmdir .' worked after recreating cwd"
4125         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4126         cd .. || error "'cd ..' failed after recreating cwd"
4127 }
4128 run_test 48a "Access renamed working dir (should return errors)="
4129
4130 test_48b() { # bug 2399
4131         rm -rf $DIR/$tdir
4132         test_mkdir $DIR/$tdir
4133         cd $DIR/$tdir
4134         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4135         touch foo && error "'touch foo' worked after removing cwd"
4136         mkdir foo && error "'mkdir foo' worked after removing cwd"
4137         touch .foo && error "'touch .foo' worked after removing cwd"
4138         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4139         ls . > /dev/null && error "'ls .' worked after removing cwd"
4140         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4141         mkdir . && error "'mkdir .' worked after removing cwd"
4142         rmdir . && error "'rmdir .' worked after removing cwd"
4143         ln -s . foo && error "'ln -s .' worked after removing cwd"
4144         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4145 }
4146 run_test 48b "Access removed working dir (should return errors)="
4147
4148 test_48c() { # bug 2350
4149         #lctl set_param debug=-1
4150         #set -vx
4151         rm -rf $DIR/$tdir
4152         test_mkdir -p $DIR/$tdir/dir
4153         cd $DIR/$tdir/dir
4154         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4155         $TRACE touch foo && error "touch foo worked after removing cwd"
4156         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4157         touch .foo && error "touch .foo worked after removing cwd"
4158         mkdir .foo && error "mkdir .foo worked after removing cwd"
4159         $TRACE ls . && error "'ls .' worked after removing cwd"
4160         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4161         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4162         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4163         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4164         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4165 }
4166 run_test 48c "Access removed working subdir (should return errors)"
4167
4168 test_48d() { # bug 2350
4169         #lctl set_param debug=-1
4170         #set -vx
4171         rm -rf $DIR/$tdir
4172         test_mkdir -p $DIR/$tdir/dir
4173         cd $DIR/$tdir/dir
4174         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4175         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4176         $TRACE touch foo && error "'touch foo' worked after removing parent"
4177         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4178         touch .foo && error "'touch .foo' worked after removing parent"
4179         mkdir .foo && error "mkdir .foo worked after removing parent"
4180         $TRACE ls . && error "'ls .' worked after removing parent"
4181         $TRACE ls .. && error "'ls ..' worked after removing parent"
4182         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4183         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4184         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4185         true
4186 }
4187 run_test 48d "Access removed parent subdir (should return errors)"
4188
4189 test_48e() { # bug 4134
4190         #lctl set_param debug=-1
4191         #set -vx
4192         rm -rf $DIR/$tdir
4193         test_mkdir -p $DIR/$tdir/dir
4194         cd $DIR/$tdir/dir
4195         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4196         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4197         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4198         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4199         # On a buggy kernel addition of "touch foo" after cd .. will
4200         # produce kernel oops in lookup_hash_it
4201         touch ../foo && error "'cd ..' worked after recreate parent"
4202         cd $DIR
4203         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4204 }
4205 run_test 48e "Access to recreated parent subdir (should return errors)"
4206
4207 test_49() { # LU-1030
4208         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4209         remote_ost_nodsh && skip "remote OST with nodsh" && return
4210         # get ost1 size - lustre-OST0000
4211         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4212                 awk '{ print $4 }')
4213         # write 800M at maximum
4214         [[ $ost1_size -lt 2 ]] && ost1_size=2
4215         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4216
4217         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4218         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4219         local dd_pid=$!
4220
4221         # change max_pages_per_rpc while writing the file
4222         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4223         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4224         # loop until dd process exits
4225         while ps ax -opid | grep -wq $dd_pid; do
4226                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4227                 sleep $((RANDOM % 5 + 1))
4228         done
4229         # restore original max_pages_per_rpc
4230         $LCTL set_param $osc1_mppc=$orig_mppc
4231         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4232 }
4233 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4234
4235 test_50() {
4236         # bug 1485
4237         test_mkdir $DIR/$tdir
4238         cd $DIR/$tdir
4239         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4240 }
4241 run_test 50 "special situations: /proc symlinks  ==============="
4242
4243 test_51a() {    # was test_51
4244         # bug 1516 - create an empty entry right after ".." then split dir
4245         test_mkdir -c1 $DIR/$tdir
4246         touch $DIR/$tdir/foo
4247         $MCREATE $DIR/$tdir/bar
4248         rm $DIR/$tdir/foo
4249         createmany -m $DIR/$tdir/longfile 201
4250         FNUM=202
4251         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4252                 $MCREATE $DIR/$tdir/longfile$FNUM
4253                 FNUM=$(($FNUM + 1))
4254                 echo -n "+"
4255         done
4256         echo
4257         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4258 }
4259 run_test 51a "special situations: split htree with empty entry =="
4260
4261 cleanup_print_lfs_df () {
4262         trap 0
4263         $LFS df
4264         $LFS df -i
4265 }
4266
4267 test_51b() {
4268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4269         local dir=$DIR/$tdir
4270
4271         local nrdirs=$((65536 + 100))
4272
4273         # cleanup the directory
4274         rm -fr $dir
4275
4276         test_mkdir -c1 $dir
4277
4278         $LFS df
4279         $LFS df -i
4280         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4281         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4282         [[ $numfree -lt $nrdirs ]] &&
4283                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4284                 return
4285
4286         # need to check free space for the directories as well
4287         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4288         numfree=$(( blkfree / $(fs_inode_ksize) ))
4289         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4290                 return
4291
4292         trap cleanup_print_lfs_df EXIT
4293
4294         # create files
4295         createmany -d $dir/d $nrdirs || {
4296                 unlinkmany $dir/d $nrdirs
4297                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4298         }
4299
4300         # really created :
4301         nrdirs=$(ls -U $dir | wc -l)
4302
4303         # unlink all but 100 subdirectories, then check it still works
4304         local left=100
4305         local delete=$((nrdirs - left))
4306
4307         $LFS df
4308         $LFS df -i
4309
4310         # for ldiskfs the nlink count should be 1, but this is OSD specific
4311         # and so this is listed for informational purposes only
4312         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4313         unlinkmany -d $dir/d $delete ||
4314                 error "unlink of first $delete subdirs failed"
4315
4316         echo "nlink between: $(stat -c %h $dir)"
4317         local found=$(ls -U $dir | wc -l)
4318         [ $found -ne $left ] &&
4319                 error "can't find subdirs: found only $found, expected $left"
4320
4321         unlinkmany -d $dir/d $delete $left ||
4322                 error "unlink of second $left subdirs failed"
4323         # regardless of whether the backing filesystem tracks nlink accurately
4324         # or not, the nlink count shouldn't be more than "." and ".." here
4325         local after=$(stat -c %h $dir)
4326         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4327                 echo "nlink after: $after"
4328
4329         cleanup_print_lfs_df
4330 }
4331 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4332
4333 test_51d() {
4334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4335         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4336         test_mkdir $DIR/$tdir
4337         createmany -o $DIR/$tdir/t- 1000
4338         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4339         for N in $(seq 0 $((OSTCOUNT - 1))); do
4340                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4341                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4342                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4343                         '($1 == '$N') { objs += 1 } \
4344                         END { printf("%0.0f", objs) }')
4345                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4346         done
4347         unlinkmany $DIR/$tdir/t- 1000
4348
4349         NLAST=0
4350         for N in $(seq 1 $((OSTCOUNT - 1))); do
4351                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4352                         error "OST $N has less objects vs OST $NLAST" \
4353                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4354                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4355                         error "OST $N has less objects vs OST $NLAST" \
4356                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4357
4358                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4359                         error "OST $N has less #0 objects vs OST $NLAST" \
4360                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4361                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4362                         error "OST $N has less #0 objects vs OST $NLAST" \
4363                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4364                 NLAST=$N
4365         done
4366         rm -f $TMP/$tfile
4367 }
4368 run_test 51d "check object distribution"
4369
4370 test_51e() {
4371         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4372                 skip "ldiskfs only test"
4373                 return
4374         fi
4375
4376         test_mkdir -c1 $DIR/$tdir
4377         test_mkdir -c1 $DIR/$tdir/d0
4378
4379         touch $DIR/$tdir/d0/foo
4380         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4381                 error "file exceed 65000 nlink limit!"
4382         unlinkmany $DIR/$tdir/d0/f- 65001
4383         return 0
4384 }
4385 run_test 51e "check file nlink limit"
4386
4387 test_51f() {
4388         test_mkdir $DIR/$tdir
4389
4390         local max=100000
4391         local ulimit_old=$(ulimit -n)
4392         local spare=20 # number of spare fd's for scripts/libraries, etc.
4393         local mdt=$(lfs getstripe -M $DIR/$tdir)
4394         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4395
4396         echo "MDT$mdt numfree=$numfree, max=$max"
4397         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4398         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4399                 while ! ulimit -n $((numfree + spare)); do
4400                         numfree=$((numfree * 3 / 4))
4401                 done
4402                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4403         else
4404                 echo "left ulimit at $ulimit_old"
4405         fi
4406
4407         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4408                 unlinkmany $DIR/$tdir/f $numfree
4409                 error "create+open $numfree files in $DIR/$tdir failed"
4410         }
4411         ulimit -n $ulimit_old
4412
4413         # if createmany exits at 120s there will be fewer than $numfree files
4414         unlinkmany $DIR/$tdir/f $numfree || true
4415 }
4416 run_test 51f "check many open files limit"
4417
4418 test_52a() {
4419         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4420         test_mkdir $DIR/$tdir
4421         touch $DIR/$tdir/foo
4422         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4423         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4424         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4425         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4426         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4427                                         error "link worked"
4428         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4429         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4430         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4431                                                      error "lsattr"
4432         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4433         cp -r $DIR/$tdir $TMP/
4434         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4435 }
4436 run_test 52a "append-only flag test (should return errors)"
4437
4438 test_52b() {
4439         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4440         test_mkdir $DIR/$tdir
4441         touch $DIR/$tdir/foo
4442         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4443         cat test > $DIR/$tdir/foo && error "cat test worked"
4444         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4445         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4446         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4447                                         error "link worked"
4448         echo foo >> $DIR/$tdir/foo && error "echo worked"
4449         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4450         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4451         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4452         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4453                                                         error "lsattr"
4454         chattr -i $DIR/$tdir/foo || error "chattr failed"
4455
4456         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4457 }
4458 run_test 52b "immutable flag test (should return errors) ======="
4459
4460 test_53() {
4461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4462         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4463         remote_ost_nodsh && skip "remote OST with nodsh" && return
4464
4465         local param
4466         local param_seq
4467         local ostname
4468         local mds_last
4469         local mds_last_seq
4470         local ost_last
4471         local ost_last_seq
4472         local ost_last_id
4473         local ostnum
4474         local node
4475         local found=false
4476         local support_last_seq=true
4477
4478         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4479                 support_last_seq=false
4480
4481         # only test MDT0000
4482         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4483         local value
4484         for value in $(do_facet $SINGLEMDS \
4485                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4486                 param=$(echo ${value[0]} | cut -d "=" -f1)
4487                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4488
4489                 if $support_last_seq; then
4490                         param_seq=$(echo $param |
4491                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4492                         mds_last_seq=$(do_facet $SINGLEMDS \
4493                                        $LCTL get_param -n $param_seq)
4494                 fi
4495                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4496
4497                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4498                 node=$(facet_active_host ost$((ostnum+1)))
4499                 param="obdfilter.$ostname.last_id"
4500                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4501                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4502                         ost_last_id=$ost_last
4503
4504                         if $support_last_seq; then
4505                                 ost_last_id=$(echo $ost_last |
4506                                               awk -F':' '{print $2}' |
4507                                               sed -e "s/^0x//g")
4508                                 ost_last_seq=$(echo $ost_last |
4509                                                awk -F':' '{print $1}')
4510                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4511                         fi
4512
4513                         if [[ $ost_last_id != $mds_last ]]; then
4514                                 error "$ost_last_id != $mds_last"
4515                         else
4516                                 found=true
4517                                 break
4518                         fi
4519                 done
4520         done
4521         $found || error "can not match last_seq/last_id for $mdtosc"
4522         return 0
4523 }
4524 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4525
4526 test_54a() {
4527         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4528
4529         $SOCKETSERVER $DIR/socket ||
4530                 error "$SOCKETSERVER $DIR/socket failed: $?"
4531         $SOCKETCLIENT $DIR/socket ||
4532                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4533         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4534 }
4535 run_test 54a "unix domain socket test =========================="
4536
4537 test_54b() {
4538         f="$DIR/f54b"
4539         mknod $f c 1 3
4540         chmod 0666 $f
4541         dd if=/dev/zero of=$f bs=$(page_size) count=1
4542 }
4543 run_test 54b "char device works in lustre ======================"
4544
4545 find_loop_dev() {
4546         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4547         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4548         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4549
4550         for i in $(seq 3 7); do
4551                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4552                 LOOPDEV=$LOOPBASE$i
4553                 LOOPNUM=$i
4554                 break
4555         done
4556 }
4557
4558 cleanup_54c() {
4559         local rc=0
4560         loopdev="$DIR/loop54c"
4561
4562         trap 0
4563         $UMOUNT $DIR/$tdir || rc=$?
4564         losetup -d $loopdev || true
4565         losetup -d $LOOPDEV || true
4566         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4567         return $rc
4568 }
4569
4570 test_54c() {
4571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4572         loopdev="$DIR/loop54c"
4573
4574         find_loop_dev
4575         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4576         trap cleanup_54c EXIT
4577         mknod $loopdev b 7 $LOOPNUM
4578         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4579         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4580         losetup $loopdev $DIR/$tfile ||
4581                 error "can't set up $loopdev for $DIR/$tfile"
4582         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4583         test_mkdir $DIR/$tdir
4584         mount -t ext2 $loopdev $DIR/$tdir ||
4585                 error "error mounting $loopdev on $DIR/$tdir"
4586         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4587                 error "dd write"
4588         df $DIR/$tdir
4589         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4590                 error "dd read"
4591         cleanup_54c
4592 }
4593 run_test 54c "block device works in lustre ====================="
4594
4595 test_54d() {
4596         f="$DIR/f54d"
4597         string="aaaaaa"
4598         mknod $f p
4599         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4600 }
4601 run_test 54d "fifo device works in lustre ======================"
4602
4603 test_54e() {
4604         f="$DIR/f54e"
4605         string="aaaaaa"
4606         cp -aL /dev/console $f
4607         echo $string > $f || error "echo $string to $f failed"
4608 }
4609 run_test 54e "console/tty device works in lustre ======================"
4610
4611 test_56a() {
4612         local numfiles=3
4613         local dir=$DIR/$tdir
4614
4615         rm -rf $dir
4616         test_mkdir -p $dir/dir
4617         for i in $(seq $numfiles); do
4618                 touch $dir/file$i
4619                 touch $dir/dir/file$i
4620         done
4621
4622         local numcomp=$($LFS getstripe --component-count $dir)
4623
4624         [[ $numcomp == 0 ]] && numcomp=1
4625
4626         # test lfs getstripe with --recursive
4627         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4628
4629         [[ $filenum -eq $((numfiles * 2)) ]] ||
4630                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4631         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4632         [[ $filenum -eq $numfiles ]] ||
4633                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4634         echo "$LFS getstripe showed obdidx or l_ost_idx"
4635
4636         # test lfs getstripe with file instead of dir
4637         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4638         [[ $filenum -eq 1 ]] ||
4639                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4640         echo "$LFS getstripe file1 passed"
4641
4642         #test lfs getstripe with --verbose
4643         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4644         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4645                 error "$LFS getstripe --verbose $dir: "\
4646                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4647         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4648                 error "$LFS getstripe $dir: showed lmm_magic"
4649
4650         #test lfs getstripe with -v prints lmm_fid
4651         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4652         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4653                 error "$LFS getstripe -v $dir: "\
4654                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4655         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4656                 error "$LFS getstripe $dir: showed lmm_fid by default"
4657         echo "$LFS getstripe --verbose passed"
4658
4659         #check for FID information
4660         local fid1=$($LFS getstripe --fid $dir/file1)
4661         local fid2=$($LFS getstripe --verbose $dir/file1 |
4662                      awk '/lmm_fid: / { print $2; exit; }')
4663         local fid3=$($LFS path2fid $dir/file1)
4664
4665         [ "$fid1" != "$fid2" ] &&
4666                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4667         [ "$fid1" != "$fid3" ] &&
4668                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4669         echo "$LFS getstripe --fid passed"
4670
4671         #test lfs getstripe with --obd
4672         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4673                 error "$LFS getstripe --obd wrong_uuid: should return error"
4674
4675         [[ $OSTCOUNT -lt 2 ]] &&
4676                 skip_env "skip '$LFS getstripe --obd' tests: $OSTCOUNT < 2" &&
4677                 return
4678
4679         local ostidx=1
4680         local obduuid=$(ostuuid_from_index $ostidx)
4681         local found=$($LFS getstripe -r --obd $obduuid $dir |
4682                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4683
4684         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4685         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4686                 ((filenum--))
4687         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4688                 ((filenum--))
4689
4690         [[ $found -eq $filenum ]] ||
4691                 error "$LFS getstripe --obd: found $found expect $filenum"
4692         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4693                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4694                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4695                 error "$LFS getstripe --obd: should not show file on other obd"
4696         echo "$LFS getstripe --obd passed"
4697 }
4698 run_test 56a "check $LFS getstripe"
4699
4700 test_56b() {
4701         local dir=$DIR/$tdir
4702         local numdirs=3
4703
4704         test_mkdir $dir
4705         for i in $(seq $numdirs); do
4706                 test_mkdir $dir/dir$i
4707         done
4708
4709         # test lfs getdirstripe default mode is non-recursion, which is
4710         # different from lfs getstripe
4711         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4712
4713         [[ $dircnt -eq 1 ]] ||
4714                 error "$LFS getdirstripe: found $dircnt, not 1"
4715         dircnt=$($LFS getdirstripe --recursive $dir |
4716                 grep -c lmv_stripe_count)
4717         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4718                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4719 }
4720 run_test 56b "check $LFS getdirstripe"
4721
4722 test_56c() {
4723         remote_ost_nodsh && skip "remote OST with nodsh" && return
4724
4725         local ost_idx=0
4726         local ost_name=$(ostname_from_index $ost_idx)
4727         local old_status=$(ost_dev_status $ost_idx)
4728
4729         [[ -z "$old_status" ]] ||
4730                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4731
4732         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4733         sleep_maxage
4734
4735         local new_status=$(ost_dev_status $ost_idx)
4736
4737         [[ "$new_status" = "D" ]] ||
4738                 error "OST $ost_name is in status of '$new_status', not 'D'"
4739
4740         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4741         sleep_maxage
4742
4743         new_status=$(ost_dev_status $ost_idx)
4744         [[ -z "$new_status" ]] ||
4745                 error "OST $ost_name is in status of '$new_status', not ''"
4746 }
4747 run_test 56c "check 'lfs df' showing device status"
4748
4749 NUMFILES=3
4750 NUMDIRS=3
4751 setup_56() {
4752         local local_tdir="$1"
4753         local local_numfiles="$2"
4754         local local_numdirs="$3"
4755         local dir_params="$4"
4756         local dir_stripe_params="$5"
4757
4758         if [ ! -d "$local_tdir" ] ; then
4759                 test_mkdir -p $dir_stripe_params $local_tdir
4760                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4761                 for i in $(seq $local_numfiles) ; do
4762                         touch $local_tdir/file$i
4763                 done
4764                 for i in $(seq $local_numdirs) ; do
4765                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4766                         for j in $(seq $local_numfiles) ; do
4767                                 touch $local_tdir/dir$i/file$j
4768                         done
4769                 done
4770         fi
4771 }
4772
4773 setup_56_special() {
4774         local local_tdir=$1
4775         local local_numfiles=$2
4776         local local_numdirs=$3
4777
4778         setup_56 $local_tdir $local_numfiles $local_numdirs
4779
4780         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4781                 for i in $(seq $local_numfiles) ; do
4782                         mknod $local_tdir/loop${i}b b 7 $i
4783                         mknod $local_tdir/null${i}c c 1 3
4784                         ln -s $local_tdir/file1 $local_tdir/link${i}
4785                 done
4786                 for i in $(seq $local_numdirs) ; do
4787                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4788                         mknod $local_tdir/dir$i/null${i}c c 1 3
4789                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4790                 done
4791         fi
4792 }
4793
4794 test_56g() {
4795         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4796         local expected=$(($NUMDIRS + 2))
4797
4798         setup_56 $dir $NUMFILES $NUMDIRS
4799
4800         # test lfs find with -name
4801         for i in $(seq $NUMFILES) ; do
4802                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4803
4804                 [ $nums -eq $expected ] ||
4805                         error "lfs find -name '*$i' $dir wrong: "\
4806                               "found $nums, expected $expected"
4807         done
4808 }
4809 run_test 56g "check lfs find -name"
4810
4811 test_56h() {
4812         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4813         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4814
4815         setup_56 $dir $NUMFILES $NUMDIRS
4816
4817         # test lfs find with ! -name
4818         for i in $(seq $NUMFILES) ; do
4819                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4820
4821                 [ $nums -eq $expected ] ||
4822                         error "lfs find ! -name '*$i' $dir wrong: "\
4823                               "found $nums, expected $expected"
4824         done
4825 }
4826 run_test 56h "check lfs find ! -name"
4827
4828 test_56i() {
4829         local dir=$DIR/$tdir
4830
4831         test_mkdir $dir
4832
4833         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4834         local out=$($cmd)
4835
4836         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4837 }
4838 run_test 56i "check 'lfs find -ost UUID' skips directories"
4839
4840 test_56j() {
4841         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4842
4843         setup_56_special $dir $NUMFILES $NUMDIRS
4844
4845         local expected=$((NUMDIRS + 1))
4846         local cmd="$LFS find -type d $dir"
4847         local nums=$($cmd | wc -l)
4848
4849         [ $nums -eq $expected ] ||
4850                 error "'$cmd' wrong: found $nums, expected $expected"
4851 }
4852 run_test 56j "check lfs find -type d"
4853
4854 test_56k() {
4855         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4856
4857         setup_56_special $dir $NUMFILES $NUMDIRS
4858
4859         local expected=$(((NUMDIRS + 1) * NUMFILES))
4860         local cmd="$LFS find -type f $dir"
4861         local nums=$($cmd | wc -l)
4862
4863         [ $nums -eq $expected ] ||
4864                 error "'$cmd' wrong: found $nums, expected $expected"
4865 }
4866 run_test 56k "check lfs find -type f"
4867
4868 test_56l() {
4869         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4870
4871         setup_56_special $dir $NUMFILES $NUMDIRS
4872
4873         local expected=$((NUMDIRS + NUMFILES))
4874         local cmd="$LFS find -type b $dir"
4875         local nums=$($cmd | wc -l)
4876
4877         [ $nums -eq $expected ] ||
4878                 error "'$cmd' wrong: found $nums, expected $expected"
4879 }
4880 run_test 56l "check lfs find -type b"
4881
4882 test_56m() {
4883         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4884
4885         setup_56_special $dir $NUMFILES $NUMDIRS
4886
4887         local expected=$((NUMDIRS + NUMFILES))
4888         local cmd="$LFS find -type c $dir"
4889         local nums=$($cmd | wc -l)
4890         [ $nums -eq $expected ] ||
4891                 error "'$cmd' wrong: found $nums, expected $expected"
4892 }
4893 run_test 56m "check lfs find -type c"
4894
4895 test_56n() {
4896         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4897         setup_56_special $dir $NUMFILES $NUMDIRS
4898
4899         local expected=$((NUMDIRS + NUMFILES))
4900         local cmd="$LFS find -type l $dir"
4901         local nums=$($cmd | wc -l)
4902
4903         [ $nums -eq $expected ] ||
4904                 error "'$cmd' wrong: found $nums, expected $expected"
4905 }
4906 run_test 56n "check lfs find -type l"
4907
4908 test_56o() {
4909         local dir=$DIR/$tdir
4910
4911         setup_56 $dir $NUMFILES $NUMDIRS
4912         utime $dir/file1 > /dev/null || error "utime (1)"
4913         utime $dir/file2 > /dev/null || error "utime (2)"
4914         utime $dir/dir1 > /dev/null || error "utime (3)"
4915         utime $dir/dir2 > /dev/null || error "utime (4)"
4916         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
4917         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
4918
4919         local expected=4
4920         local nums=$($LFS find -mtime +0 $dir | wc -l)
4921
4922         [ $nums -eq $expected ] ||
4923                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
4924
4925         expected=12
4926         cmd="$LFS find -mtime 0 $dir"
4927         nums=$($cmd | wc -l)
4928         [ $nums -eq $expected ] ||
4929                 error "'$cmd' wrong: found $nums, expected $expected"
4930 }
4931 run_test 56o "check lfs find -mtime for old files"
4932
4933 test_56p() {
4934         [ $RUNAS_ID -eq $UID ] &&
4935                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4936
4937         local dir=$DIR/$tdir
4938
4939         setup_56 $dir $NUMFILES $NUMDIRS
4940         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
4941
4942         local expected=$NUMFILES
4943         local cmd="$LFS find -uid $RUNAS_ID $dir"
4944         local nums=$($cmd | wc -l)
4945
4946         [ $nums -eq $expected ] ||
4947                 error "'$cmd' wrong: found $nums, expected $expected"
4948
4949         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
4950         cmd="$LFS find ! -uid $RUNAS_ID $dir"
4951         nums=$($cmd | wc -l)
4952         [ $nums -eq $expected ] ||
4953                 error "'$cmd' wrong: found $nums, expected $expected"
4954 }
4955 run_test 56p "check lfs find -uid and ! -uid"
4956
4957 test_56q() {
4958         [ $RUNAS_ID -eq $UID ] &&
4959                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4960
4961         local dir=$DIR/$tdir
4962
4963         setup_56 $dir $NUMFILES $NUMDIRS
4964         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
4965
4966         local expected=$NUMFILES
4967         local cmd="$LFS find -gid $RUNAS_GID $dir"
4968         local nums=$($cmd | wc -l)
4969
4970         [ $nums -eq $expected ] ||
4971                 error "'$cmd' wrong: found $nums, expected $expected"
4972
4973         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4974         cmd="$LFS find ! -gid $RUNAS_GID $dir"
4975         nums=$($cmd | wc -l)
4976         [ $nums -eq $expected ] ||
4977                 error "'$cmd' wrong: found $nums, expected $expected"
4978 }
4979 run_test 56q "check lfs find -gid and ! -gid"
4980
4981 test_56r() {
4982         local dir=$DIR/$tdir
4983
4984         setup_56 $dir $NUMFILES $NUMDIRS
4985
4986         local expected=12
4987         local cmd="$LFS find -size 0 -type f $dir"
4988         local nums=$($cmd | wc -l)
4989
4990         [ $nums -eq $expected ] ||
4991                 error "'$cmd' wrong: found $nums, expected $expected"
4992         expected=0
4993         cmd="$LFS find ! -size 0 -type f $dir"
4994         nums=$($cmd | wc -l)
4995         [ $nums -eq $expected ] ||
4996                 error "'$cmd' wrong: found $nums, expected $expected"
4997         echo "test" > $dir/$tfile
4998         echo "test2" > $dir/$tfile.2 && sync
4999         expected=1
5000         cmd="$LFS find -size 5 -type f $dir"
5001         nums=$($cmd | wc -l)
5002         [ $nums -eq $expected ] ||
5003                 error "'$cmd' wrong: found $nums, expected $expected"
5004         expected=1
5005         cmd="$LFS find -size +5 -type f $dir"
5006         nums=$($cmd | wc -l)
5007         [ $nums -eq $expected ] ||
5008                 error "'$cmd' wrong: found $nums, expected $expected"
5009         expected=2
5010         cmd="$LFS find -size +0 -type f $dir"
5011         nums=$($cmd | wc -l)
5012         [ $nums -eq $expected ] ||
5013                 error "'$cmd' wrong: found $nums, expected $expected"
5014         expected=2
5015         cmd="$LFS find ! -size -5 -type f $dir"
5016         nums=$($cmd | wc -l)
5017         [ $nums -eq $expected ] ||
5018                 error "'$cmd' wrong: found $nums, expected $expected"
5019         expected=12
5020         cmd="$LFS find -size -5 -type f $dir"
5021         nums=$($cmd | wc -l)
5022         [ $nums -eq $expected ] ||
5023                 error "'$cmd' wrong: found $nums, expected $expected"
5024 }
5025 run_test 56r "check lfs find -size works"
5026
5027 test_56s() { # LU-611 #LU-9369
5028         [[ $OSTCOUNT -lt 2 ]] && skip "need at least 2 OSTs" && return 0
5029
5030         local dir=$DIR/$tdir
5031         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5032
5033         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5034         for i in $(seq $NUMDIRS); do
5035                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5036         done
5037
5038         local expected=$NUMDIRS
5039         local cmd="$LFS find -c $OSTCOUNT $dir"
5040         local nums=$($cmd | wc -l)
5041
5042         [ $nums -eq $expected ] || {
5043                 $LFS getstripe -R $dir
5044                 error "'$cmd' wrong: found $nums, expected $expected"
5045         }
5046
5047         expected=$((NUMDIRS + onestripe))
5048         cmd="$LFS find -stripe-count +0 -type f $dir"
5049         nums=$($cmd | wc -l)
5050         [ $nums -eq $expected ] || {
5051                 $LFS getstripe -R $dir
5052                 error "'$cmd' wrong: found $nums, expected $expected"
5053         }
5054
5055         expected=$onestripe
5056         cmd="$LFS find -stripe-count 1 -type f $dir"
5057         nums=$($cmd | wc -l)
5058         [ $nums -eq $expected ] || {
5059                 $LFS getstripe -R $dir
5060                 error "'$cmd' wrong: found $nums, expected $expected"
5061         }
5062
5063         cmd="$LFS find -stripe-count -2 -type f $dir"
5064         nums=$($cmd | wc -l)
5065         [ $nums -eq $expected ] || {
5066                 $LFS getstripe -R $dir
5067                 error "'$cmd' wrong: found $nums, expected $expected"
5068         }
5069
5070         expected=0
5071         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5072         nums=$($cmd | wc -l)
5073         [ $nums -eq $expected ] || {
5074                 $LFS getstripe -R $dir
5075                 error "'$cmd' wrong: found $nums, expected $expected"
5076         }
5077 }
5078 run_test 56s "check lfs find -stripe-count works"
5079
5080 test_56t() { # LU-611 #LU-9369
5081         local dir=$DIR/$tdir
5082
5083         setup_56 $dir 0 $NUMDIRS
5084         for i in $(seq $NUMDIRS); do
5085                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5086         done
5087
5088         local expected=$NUMDIRS
5089         local cmd="$LFS find -S 8M $dir"
5090         local nums=$($cmd | wc -l)
5091
5092         [ $nums -eq $expected ] || {
5093                 $LFS getstripe -R $dir
5094                 error "'$cmd' wrong: found $nums, expected $expected"
5095         }
5096         rm -rf $dir
5097
5098         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5099
5100         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5101
5102         expected=$(((NUMDIRS + 1) * NUMFILES))
5103         cmd="$LFS find -stripe-size 512k -type f $dir"
5104         nums=$($cmd | wc -l)
5105         [ $nums -eq $expected ] ||
5106                 error "'$cmd' wrong: found $nums, expected $expected"
5107
5108         cmd="$LFS find -stripe-size +320k -type f $dir"
5109         nums=$($cmd | wc -l)
5110         [ $nums -eq $expected ] ||
5111                 error "'$cmd' wrong: found $nums, expected $expected"
5112
5113         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5114         cmd="$LFS find -stripe-size +200k -type f $dir"
5115         nums=$($cmd | wc -l)
5116         [ $nums -eq $expected ] ||
5117                 error "'$cmd' wrong: found $nums, expected $expected"
5118
5119         cmd="$LFS find -stripe-size -640k -type f $dir"
5120         nums=$($cmd | wc -l)
5121         [ $nums -eq $expected ] ||
5122                 error "'$cmd' wrong: found $nums, expected $expected"
5123
5124         expected=4
5125         cmd="$LFS find -stripe-size 256k -type f $dir"
5126         nums=$($cmd | wc -l)
5127         [ $nums -eq $expected ] ||
5128                 error "'$cmd' wrong: found $nums, expected $expected"
5129
5130         cmd="$LFS find -stripe-size -320k -type f $dir"
5131         nums=$($cmd | wc -l)
5132         [ $nums -eq $expected ] ||
5133                 error "'$cmd' wrong: found $nums, expected $expected"
5134
5135         expected=0
5136         cmd="$LFS find -stripe-size 1024k -type f $dir"
5137         nums=$($cmd | wc -l)
5138         [ $nums -eq $expected ] ||
5139                 error "'$cmd' wrong: found $nums, expected $expected"
5140 }
5141 run_test 56t "check lfs find -stripe-size works"
5142
5143 test_56u() { # LU-611
5144         local dir=$DIR/$tdir
5145
5146         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5147
5148         if [[ $OSTCOUNT -gt 1 ]]; then
5149                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5150                 onestripe=4
5151         else
5152                 onestripe=0
5153         fi
5154
5155         local expected=$(((NUMDIRS + 1) * NUMFILES))
5156         local cmd="$LFS find -stripe-index 0 -type f $dir"
5157         local nums=$($cmd | wc -l)
5158
5159         [ $nums -eq $expected ] ||
5160                 error "'$cmd' wrong: found $nums, expected $expected"
5161
5162         expected=$onestripe
5163         cmd="$LFS find -stripe-index 1 -type f $dir"
5164         nums=$($cmd | wc -l)
5165         [ $nums -eq $expected ] ||
5166                 error "'$cmd' wrong: found $nums, expected $expected"
5167
5168         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5169         nums=$($cmd | wc -l)
5170         [ $nums -eq $expected ] ||
5171                 error "'$cmd' wrong: found $nums, expected $expected"
5172
5173         expected=0
5174         # This should produce an error and not return any files
5175         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5176         nums=$($cmd 2>/dev/null | wc -l)
5177         [ $nums -eq $expected ] ||
5178                 error "'$cmd' wrong: found $nums, expected $expected"
5179
5180         if [[ $OSTCOUNT -gt 1 ]]; then
5181                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5182                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5183                 nums=$($cmd | wc -l)
5184                 [ $nums -eq $expected ] ||
5185                         error "'$cmd' wrong: found $nums, expected $expected"
5186         fi
5187 }
5188 run_test 56u "check lfs find -stripe-index works"
5189
5190 test_56v() {
5191         local MDT_IDX=0
5192         local dir=$DIR/$tdir
5193
5194         setup_56 $dir $NUMFILES $NUMDIRS
5195
5196         UUID=$(mdtuuid_from_index $MDT_IDX $dir)
5197         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $MDT_IDX"
5198
5199         for file in $($LFS find -mdt $UUID $dir); do
5200                 file_mdt_idx=$($LFS getstripe -M $file)
5201                 [ $file_mdt_idx -eq $MDT_IDX ] ||
5202                         error "lfind -mdt $UUID != getstripe -M $file_mdt_idx"
5203         done
5204 }
5205 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5206
5207 test_56w() {
5208         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5210         local dir=$DIR/$tdir
5211
5212         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5213
5214         local stripe_size=$($LFS getstripe -S -d $dir) ||
5215                 error "$LFS getstripe -S -d $dir failed"
5216         stripe_size=${stripe_size%% *}
5217
5218         local file_size=$((stripe_size * OSTCOUNT))
5219         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5220         local required_space=$((file_num * file_size))
5221         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5222                            head -n1)
5223         [[ $free_space -le $((required_space / 1024)) ]] &&
5224                 skip_env "need $required_space, have $free_space kbytes" &&
5225                 return
5226
5227         local dd_bs=65536
5228         local dd_count=$((file_size / dd_bs))
5229
5230         # write data into the files
5231         local i
5232         local j
5233         local file
5234
5235         for i in $(seq $NUMFILES); do
5236                 file=$dir/file$i
5237                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5238                         error "write data into $file failed"
5239         done
5240         for i in $(seq $NUMDIRS); do
5241                 for j in $(seq $NUMFILES); do
5242                         file=$dir/dir$i/file$j
5243                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5244                                 error "write data into $file failed"
5245                 done
5246         done
5247
5248         # $LFS_MIGRATE will fail if hard link migration is unsupported
5249         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5250                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5251                         error "creating links to $dir/dir1/file1 failed"
5252         fi
5253
5254         local expected=-1
5255
5256         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5257
5258         # lfs_migrate file
5259         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5260
5261         echo "$cmd"
5262         eval $cmd || error "$cmd failed"
5263
5264         check_stripe_count $dir/file1 $expected
5265
5266         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5267         then
5268                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5269                 # OST 1 if it is on OST 0. This file is small enough to
5270                 # be on only one stripe.
5271                 file=$dir/migr_1_ost
5272                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5273                         error "write data into $file failed"
5274                 local obdidx=$($LFS getstripe -i $file)
5275                 local oldmd5=$(md5sum $file)
5276                 local newobdidx=0
5277
5278                 [[ $obdidx -eq 0 ]] && newobdidx=1
5279                 cmd="$LFS migrate -i $newobdidx $file"
5280                 echo $cmd
5281                 eval $cmd || error "$cmd failed"
5282
5283                 local realobdix=$($LFS getstripe -i $file)
5284                 local newmd5=$(md5sum $file)
5285
5286                 [[ $newobdidx -ne $realobdix ]] &&
5287                         error "new OST is different (was=$obdidx, "\
5288                               "wanted=$newobdidx, got=$realobdix)"
5289                 [[ "$oldmd5" != "$newmd5" ]] &&
5290                         error "md5sum differ: $oldmd5, $newmd5"
5291         fi
5292
5293         # lfs_migrate dir
5294         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5295         echo "$cmd"
5296         eval $cmd || error "$cmd failed"
5297
5298         for j in $(seq $NUMFILES); do
5299                 check_stripe_count $dir/dir1/file$j $expected
5300         done
5301
5302         # lfs_migrate works with lfs find
5303         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5304              $LFS_MIGRATE -y -c $expected"
5305         echo "$cmd"
5306         eval $cmd || error "$cmd failed"
5307
5308         for i in $(seq 2 $NUMFILES); do
5309                 check_stripe_count $dir/file$i $expected
5310         done
5311         for i in $(seq 2 $NUMDIRS); do
5312                 for j in $(seq $NUMFILES); do
5313                 check_stripe_count $dir/dir$i/file$j $expected
5314                 done
5315         done
5316 }
5317 run_test 56w "check lfs_migrate -c stripe_count works"
5318
5319 test_56wb() {
5320         local file1=$DIR/$tdir/file1
5321         local create_pool=false
5322         local initial_pool=$($LFS getstripe -p $DIR)
5323         local pool_list=()
5324         local pool=""
5325
5326         echo -n "Creating test dir..."
5327         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5328         echo "done."
5329
5330         echo -n "Creating test file..."
5331         touch $file1 || error "cannot create file"
5332         echo "done."
5333
5334         echo -n "Detecting existing pools..."
5335         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5336
5337         if [ ${#pool_list[@]} -gt 0 ]; then
5338                 echo "${pool_list[@]}"
5339                 for thispool in "${pool_list[@]}"; do
5340                         if [[ -z "$initial_pool" ||
5341                               "$initial_pool" != "$thispool" ]]; then
5342                                 pool="$thispool"
5343                                 echo "Using existing pool '$pool'"
5344                                 break
5345                         fi
5346                 done
5347         else
5348                 echo "none detected."
5349         fi
5350         if [ -z "$pool" ]; then
5351                 pool=${POOL:-testpool}
5352                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5353                 echo -n "Creating pool '$pool'..."
5354                 create_pool=true
5355                 pool_add $pool &> /dev/null ||
5356                         error "pool_add failed"
5357                 echo "done."
5358
5359                 echo -n "Adding target to pool..."
5360                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5361                         error "pool_add_targets failed"
5362                 echo "done."
5363         fi
5364
5365         echo -n "Setting pool using -p option..."
5366         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5367                 error "migrate failed rc = $?"
5368         echo "done."
5369
5370         echo -n "Verifying test file is in pool after migrating..."
5371         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5372                 error "file was not migrated to pool $pool"
5373         echo "done."
5374
5375         echo -n "Removing test file from pool '$pool'..."
5376         $LFS migrate $file1 &> /dev/null ||
5377                 error "cannot remove from pool"
5378         [ "$($LFS getstripe -p $file1)" ] &&
5379                 error "pool still set"
5380         echo "done."
5381
5382         echo -n "Setting pool using --pool option..."
5383         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5384                 error "migrate failed rc = $?"
5385         echo "done."
5386
5387         # Clean up
5388         rm -f $file1
5389         if $create_pool; then
5390                 destroy_test_pools 2> /dev/null ||
5391                         error "destroy test pools failed"
5392         fi
5393 }
5394 run_test 56wb "check lfs_migrate pool support"
5395
5396 test_56wc() {
5397         local file1="$DIR/$tdir/file 1"
5398
5399         echo -n "Creating test dir..."
5400         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5401         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5402         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5403                 error "cannot set stripe"
5404         echo "done"
5405
5406         echo -n "Setting initial stripe for test file..."
5407         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5408                 error "cannot set stripe"
5409         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5410                 error "stripe size not set"
5411         echo "done."
5412
5413         # File currently set to -S 512K -c 1
5414
5415         # Ensure -c and -S options are rejected when -R is set
5416         echo -n "Verifying incompatible options are detected..."
5417         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5418                 error "incompatible -c and -R options not detected"
5419         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5420                 error "incompatible -S and -R options not detected"
5421         echo "done."
5422
5423         # Ensure unrecognized options are passed through to 'lfs migrate'
5424         echo -n "Verifying -S option is passed through to lfs migrate..."
5425         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5426                 error "migration failed"
5427         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5428                 error "file was not restriped"
5429         echo "done."
5430
5431         # File currently set to -S 1M -c 1
5432
5433         # Ensure long options are supported
5434         echo -n "Verifying long options supported..."
5435         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5436                 error "long option without argument not supported"
5437         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5438                 error "long option with argument not supported"
5439         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5440                 error "file not restriped with --stripe-size option"
5441         echo "done."
5442
5443         # File currently set to -S 512K -c 1
5444
5445         if [ "$OSTCOUNT" -gt 1 ]; then
5446                 echo -n "Verifying explicit stripe count can be set..."
5447                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5448                         error "migrate failed"
5449                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5450                         error "file not restriped to explicit count"
5451                 echo "done."
5452         fi
5453
5454         # File currently set to -S 512K -c 1 or -S 512K -c 2
5455
5456         # Ensure parent striping is used if -R is set, and no stripe
5457         # count or size is specified
5458         echo -n "Setting stripe for parent directory..."
5459         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5460                 error "cannot set stripe"
5461         echo "done."
5462
5463         echo -n "Verifying restripe option uses parent stripe settings..."
5464         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5465                 error "migrate failed"
5466         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5467                 error "file not restriped to parent settings"
5468         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5469                 error "file not restriped to parent settings"
5470         echo "done."
5471
5472         # File currently set to -S 1M -c 1
5473
5474         # Ensure striping is preserved if -R is not set, and no stripe
5475         # count or size is specified
5476         echo -n "Verifying striping size preserved when not specified..."
5477         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5478         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5479                 error "cannot set stripe on parent directory"
5480         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5481                 error "migrate failed"
5482         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5483                 error "file was restriped"
5484         echo "done."
5485
5486         # Ensure file name properly detected when final option has no argument
5487         echo -n "Verifying file name properly detected..."
5488         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5489                 error "file name interpreted as option argument"
5490         echo "done."
5491
5492         # Clean up
5493         rm -f "$file1"
5494 }
5495 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5496
5497 test_56wd() {
5498         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5499         local file1=$DIR/$tdir/file1
5500
5501         echo -n "Creating test dir..."
5502         test_mkdir $DIR/$tdir || error "cannot create dir"
5503         echo "done."
5504
5505         echo -n "Creating test file..."
5506         touch $file1
5507         echo "done."
5508
5509         # Ensure 'lfs migrate' will fail by using a non-existent option,
5510         # and make sure rsync is not called to recover
5511         echo -n "Make sure --no-rsync option works..."
5512         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5513                 grep -q 'refusing to fall back to rsync' ||
5514                 error "rsync was called with --no-rsync set"
5515         echo "done."
5516
5517         # Ensure rsync is called without trying 'lfs migrate' first
5518         echo -n "Make sure --rsync option works..."
5519         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5520                 grep -q 'falling back to rsync' &&
5521                 error "lfs migrate was called with --rsync set"
5522         echo "done."
5523
5524         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5525         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5526                 grep -q 'at the same time' ||
5527                 error "--rsync and --no-rsync accepted concurrently"
5528         echo "done."
5529
5530         # Clean up
5531         rm -f $file1
5532 }
5533 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5534
5535 test_56x() {
5536         check_swap_layouts_support && return 0
5537         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5538
5539         local dir=$DIR/$tdir
5540         local ref1=/etc/passwd
5541         local file1=$dir/file1
5542
5543         test_mkdir $dir || error "creating dir $dir"
5544         $LFS setstripe -c 2 $file1
5545         cp $ref1 $file1
5546         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5547         stripe=$($LFS getstripe -c $file1)
5548         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5549         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5550
5551         # clean up
5552         rm -f $file1
5553 }
5554 run_test 56x "lfs migration support"
5555
5556 test_56xa() {
5557         check_swap_layouts_support && return 0
5558         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5559
5560         local dir=$DIR/$tdir/$testnum
5561
5562         test_mkdir -p $dir
5563
5564         local ref1=/etc/passwd
5565         local file1=$dir/file1
5566
5567         $LFS setstripe -c 2 $file1
5568         cp $ref1 $file1
5569         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5570
5571         local stripe=$($LFS getstripe -c $file1)
5572
5573         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5574         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5575
5576         # clean up
5577         rm -f $file1
5578 }
5579 run_test 56xa "lfs migration --block support"
5580
5581 check_migrate_links() {
5582         local dir="$1"
5583         local file1="$dir/file1"
5584         local begin="$2"
5585         local count="$3"
5586         local total_count=$(($begin + $count - 1))
5587         local symlink_count=10
5588         local uniq_count=10
5589
5590         if [ ! -f "$file1" ]; then
5591                 echo -n "creating initial file..."
5592                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5593                         error "cannot setstripe initial file"
5594                 echo "done"
5595
5596                 echo -n "creating symlinks..."
5597                 for s in $(seq 1 $symlink_count); do
5598                         ln -s "$file1" "$dir/slink$s" ||
5599                                 error "cannot create symlinks"
5600                 done
5601                 echo "done"
5602
5603                 echo -n "creating nonlinked files..."
5604                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5605                         error "cannot create nonlinked files"
5606                 echo "done"
5607         fi
5608
5609         # create hard links
5610         if [ ! -f "$dir/file$total_count" ]; then
5611                 echo -n "creating hard links $begin:$total_count..."
5612                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5613                         /dev/null || error "cannot create hard links"
5614                 echo "done"
5615         fi
5616
5617         echo -n "checking number of hard links listed in xattrs..."
5618         local fid=$($LFS getstripe -F "$file1")
5619         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5620
5621         echo "${#paths[*]}"
5622         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5623                         echo "hard link list has unexpected size, skipping test"
5624                         return 0
5625         fi
5626         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5627                         error "link names should exceed xattrs size"
5628         fi
5629
5630         echo -n "migrating files..."
5631         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5632         local rc=$?
5633         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5634         echo "done"
5635
5636         # make sure all links have been properly migrated
5637         echo -n "verifying files..."
5638         fid=$($LFS getstripe -F "$file1") ||
5639                 error "cannot get fid for file $file1"
5640         for i in $(seq 2 $total_count); do
5641                 local fid2=$($LFS getstripe -F $dir/file$i)
5642
5643                 [ "$fid2" == "$fid" ] ||
5644                         error "migrated hard link has mismatched FID"
5645         done
5646
5647         # make sure hard links were properly detected, and migration was
5648         # performed only once for the entire link set; nonlinked files should
5649         # also be migrated
5650         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5651         local expected=$(($uniq_count + 1))
5652
5653         [ "$actual" -eq  "$expected" ] ||
5654                 error "hard links individually migrated ($actual != $expected)"
5655
5656         # make sure the correct number of hard links are present
5657         local hardlinks=$(stat -c '%h' "$file1")
5658
5659         [ $hardlinks -eq $total_count ] ||
5660                 error "num hard links $hardlinks != $total_count"
5661         echo "done"
5662
5663         return 0
5664 }
5665
5666 test_56xb() {
5667         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
5668                 skip "Need MDS version at least 2.10.55" && return
5669
5670         local dir="$DIR/$tdir"
5671
5672         test_mkdir "$dir" || error "cannot create dir $dir"
5673
5674         echo "testing lfs migrate mode when all links fit within xattrs"
5675         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5676
5677         echo "testing rsync mode when all links fit within xattrs"
5678         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5679
5680         echo "testing lfs migrate mode when all links do not fit within xattrs"
5681         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5682
5683         echo "testing rsync mode when all links do not fit within xattrs"
5684         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5685
5686         # clean up
5687         rm -rf $dir
5688 }
5689 run_test 56xb "lfs migration hard link support"
5690
5691 test_56y() {
5692         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5693                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5694                 return
5695
5696         local res=""
5697         local dir=$DIR/$tdir
5698         local f1=$dir/file1
5699         local f2=$dir/file2
5700
5701         test_mkdir -p $dir || error "creating dir $dir"
5702         touch $f1 || error "creating std file $f1"
5703         $MULTIOP $f2 H2c || error "creating released file $f2"
5704
5705         # a directory can be raid0, so ask only for files
5706         res=$($LFS find $dir -L raid0 -type f | wc -l)
5707         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5708
5709         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5710         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5711
5712         # only files can be released, so no need to force file search
5713         res=$($LFS find $dir -L released)
5714         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5715
5716         res=$($LFS find $dir -type f \! -L released)
5717         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5718 }
5719 run_test 56y "lfs find -L raid0|released"
5720
5721 test_56z() { # LU-4824
5722         # This checks to make sure 'lfs find' continues after errors
5723         # There are two classes of errors that should be caught:
5724         # - If multiple paths are provided, all should be searched even if one
5725         #   errors out
5726         # - If errors are encountered during the search, it should not terminate
5727         #   early
5728         local dir=$DIR/$tdir
5729         local i
5730
5731         test_mkdir $dir
5732         for i in d{0..9}; do
5733                 test_mkdir $dir/$i
5734         done
5735         touch $dir/d{0..9}/$tfile
5736         $LFS find $DIR/non_existent_dir $dir &&
5737                 error "$LFS find did not return an error"
5738         # Make a directory unsearchable. This should NOT be the last entry in
5739         # directory order.  Arbitrarily pick the 6th entry
5740         chmod 700 $($LFS find $dir -type d | sed '6!d')
5741
5742         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5743
5744         # The user should be able to see 10 directories and 9 files
5745         [ $count == 19 ] || error "$LFS find did not continue after error"
5746 }
5747 run_test 56z "lfs find should continue after an error"
5748
5749 test_56aa() { # LU-5937
5750         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5751
5752         local dir=$DIR/$tdir
5753
5754         mkdir $dir
5755         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5756
5757         createmany -o $dir/striped_dir/${tfile}- 1024
5758         local dirs=$($LFS find --size +8k $dir/)
5759
5760         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5761 }
5762 run_test 56aa "lfs find --size under striped dir"
5763
5764 test_56ab() { # LU-10705
5765         test_mkdir $DIR/$tdir
5766         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5767         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5768         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5769         # Flush writes to ensure valid blocks.  Need to be more thorough for
5770         # ZFS, since blocks are not allocated/returned to client immediately.
5771         sync_all_data
5772         wait_zfs_commit ost1 2
5773         cancel_lru_locks osc
5774         ls -ls $DIR/$tdir
5775
5776         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5777
5778         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5779
5780         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5781         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5782
5783         rm -f $DIR/$tdir/$tfile.[123]
5784 }
5785 run_test 56ab "lfs find --blocks"
5786
5787 test_56ba() {
5788         # Create composite files with one component
5789         local dir=$DIR/$tdir
5790
5791         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5792         # Create composite files with three components
5793         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5794         # Create non-composite files
5795         createmany -o $dir/${tfile}- 10
5796
5797         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5798
5799         [[ $nfiles == 10 ]] ||
5800                 error "lfs find -E 1M found $nfiles != 10 files"
5801
5802         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5803         [[ $nfiles == 25 ]] ||
5804                 error "lfs find ! -E 1M found $nfiles != 25 files"
5805
5806         # All files have a component that starts at 0
5807         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5808         [[ $nfiles == 35 ]] ||
5809                 error "lfs find --component-start 0 - $nfiles != 35 files"
5810
5811         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5812         [[ $nfiles == 15 ]] ||
5813                 error "lfs find --component-start 2M - $nfiles != 15 files"
5814
5815         # All files created here have a componenet that does not starts at 2M
5816         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5817         [[ $nfiles == 35 ]] ||
5818                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5819
5820         # Find files with a specified number of components
5821         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5822         [[ $nfiles == 15 ]] ||
5823                 error "lfs find --component-count 3 - $nfiles != 15 files"
5824
5825         # Remember non-composite files have a component count of zero
5826         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5827         [[ $nfiles == 10 ]] ||
5828                 error "lfs find --component-count 0 - $nfiles != 10 files"
5829
5830         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5831         [[ $nfiles == 20 ]] ||
5832                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5833
5834         # All files have a flag called "init"
5835         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5836         [[ $nfiles == 35 ]] ||
5837                 error "lfs find --component-flags init - $nfiles != 35 files"
5838
5839         # Multi-component files will have a component not initialized
5840         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5841         [[ $nfiles == 15 ]] ||
5842                 error "lfs find !--component-flags init - $nfiles != 15 files"
5843
5844         rm -rf $dir
5845
5846 }
5847 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5848
5849 test_56ca() {
5850         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5851                 { skip "Need MDS version at least 2.10.57"; return 0; }
5852
5853         local td=$DIR/$tdir
5854         local tf=$td/$tfile
5855         local dir
5856         local nfiles
5857         local cmd
5858         local i
5859         local j
5860
5861         # create mirrored directories and mirrored files
5862         mkdir $td || error "mkdir $td failed"
5863         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5864         createmany -o $tf- 10 || error "create $tf- failed"
5865
5866         for i in $(seq 2); do
5867                 dir=$td/dir$i
5868                 mkdir $dir || error "mkdir $dir failed"
5869                 $LFS mirror create -N$((3 + i)) $dir ||
5870                         error "create mirrored dir $dir failed"
5871                 createmany -o $dir/$tfile- 10 ||
5872                         error "create $dir/$tfile- failed"
5873         done
5874
5875         # change the states of some mirrored files
5876         echo foo > $tf-6
5877         for i in $(seq 2); do
5878                 dir=$td/dir$i
5879                 for j in $(seq 4 9); do
5880                         echo foo > $dir/$tfile-$j
5881                 done
5882         done
5883
5884         # find mirrored files with specific mirror count
5885         cmd="$LFS find --mirror-count 3 --type f $td"
5886         nfiles=$($cmd | wc -l)
5887         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
5888
5889         cmd="$LFS find ! --mirror-count 3 --type f $td"
5890         nfiles=$($cmd | wc -l)
5891         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
5892
5893         cmd="$LFS find --mirror-count +2 --type f $td"
5894         nfiles=$($cmd | wc -l)
5895         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5896
5897         cmd="$LFS find --mirror-count -6 --type f $td"
5898         nfiles=$($cmd | wc -l)
5899         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5900
5901         # find mirrored files with specific file state
5902         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
5903         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
5904
5905         cmd="$LFS find --mirror-state=ro --type f $td"
5906         nfiles=$($cmd | wc -l)
5907         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
5908
5909         cmd="$LFS find ! --mirror-state=ro --type f $td"
5910         nfiles=$($cmd | wc -l)
5911         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
5912
5913         cmd="$LFS find --mirror-state=wp --type f $td"
5914         nfiles=$($cmd | wc -l)
5915         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
5916
5917         cmd="$LFS find ! --mirror-state=sp --type f $td"
5918         nfiles=$($cmd | wc -l)
5919         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
5920 }
5921 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
5922
5923 test_57a() {
5924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5925         # note test will not do anything if MDS is not local
5926         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5927                 skip "ldiskfs only test"
5928                 return
5929         fi
5930
5931         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5932         local MNTDEV="osd*.*MDT*.mntdev"
5933         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5934         [ -z "$DEV" ] && error "can't access $MNTDEV"
5935         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5936                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5937                         error "can't access $DEV"
5938                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5939                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5940                 rm $TMP/t57a.dump
5941         done
5942 }
5943 run_test 57a "verify MDS filesystem created with large inodes =="
5944
5945 test_57b() {
5946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5947         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5948                 skip "ldiskfs only test"
5949                 return
5950         fi
5951
5952         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5953         local dir=$DIR/$tdir
5954
5955         local FILECOUNT=100
5956         local FILE1=$dir/f1
5957         local FILEN=$dir/f$FILECOUNT
5958
5959         rm -rf $dir || error "removing $dir"
5960         test_mkdir -c1 $dir
5961         local mdtidx=$($LFS getstripe -M $dir)
5962         local mdtname=MDT$(printf %04x $mdtidx)
5963         local facet=mds$((mdtidx + 1))
5964
5965         echo "mcreating $FILECOUNT files"
5966         createmany -m $dir/f 1 $FILECOUNT || \
5967                 error "creating files in $dir"
5968
5969         # verify that files do not have EAs yet
5970         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5971         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5972
5973         sync
5974         sleep 1
5975         df $dir  #make sure we get new statfs data
5976         local MDSFREE=$(do_facet $facet \
5977                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5978         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5979         echo "opening files to create objects/EAs"
5980         local FILE
5981         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5982                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5983         done
5984
5985         # verify that files have EAs now
5986         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5987         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5988
5989         sleep 1  #make sure we get new statfs data
5990         df $dir
5991         local MDSFREE2=$(do_facet $facet \
5992                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5993         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5994         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5995                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5996                         error "MDC before $MDCFREE != after $MDCFREE2"
5997                 else
5998                         echo "MDC before $MDCFREE != after $MDCFREE2"
5999                         echo "unable to confirm if MDS has large inodes"
6000                 fi
6001         fi
6002         rm -rf $dir
6003 }
6004 run_test 57b "default LOV EAs are stored inside large inodes ==="
6005
6006 test_58() {
6007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6008         [ -z "$(which wiretest 2>/dev/null)" ] &&
6009                         skip_env "could not find wiretest" && return
6010         wiretest
6011 }
6012 run_test 58 "verify cross-platform wire constants =============="
6013
6014 test_59() {
6015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6016         echo "touch 130 files"
6017         createmany -o $DIR/f59- 130
6018         echo "rm 130 files"
6019         unlinkmany $DIR/f59- 130
6020         sync
6021         # wait for commitment of removal
6022         wait_delete_completed
6023 }
6024 run_test 59 "verify cancellation of llog records async ========="
6025
6026 TEST60_HEAD="test_60 run $RANDOM"
6027 test_60a() {
6028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6029         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
6030         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6031                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6032                         skip_env "missing subtest run-llog.sh" && return
6033
6034         log "$TEST60_HEAD - from kernel mode"
6035         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6036         do_facet mgs "sh run-llog.sh" || error "run-llog.sh failed"
6037         do_facet mgs $LCTL dk > $TMP/$tfile
6038
6039         # LU-6388: test llog_reader
6040         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6041         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6042         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6043                         skip_env "missing llog_reader" && return
6044         local fstype=$(facet_fstype mgs)
6045         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6046                 skip_env "Only for ldiskfs or zfs type mgs" && return
6047
6048         local mntpt=$(facet_mntpt mgs)
6049         local mgsdev=$(mgsdevname 1)
6050         local fid_list
6051         local fid
6052         local rec_list
6053         local rec
6054         local rec_type
6055         local obj_file
6056         local path
6057         local seq
6058         local oid
6059         local pass=true
6060
6061         #get fid and record list
6062         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6063                 tail -n 4))
6064         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6065                 tail -n 4))
6066         #remount mgs as ldiskfs or zfs type
6067         stop mgs || error "stop mgs failed"
6068         mount_fstype mgs || error "remount mgs failed"
6069         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6070                 fid=${fid_list[i]}
6071                 rec=${rec_list[i]}
6072                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6073                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6074                 oid=$((16#$oid))
6075
6076                 case $fstype in
6077                         ldiskfs )
6078                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6079                         zfs )
6080                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6081                 esac
6082                 echo "obj_file is $obj_file"
6083                 do_facet mgs $llog_reader $obj_file
6084
6085                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6086                         awk '{ print $3 }' | sed -e "s/^type=//g")
6087                 if [ $rec_type != $rec ]; then
6088                         echo "FAILED test_60a wrong record type $rec_type," \
6089                               "should be $rec"
6090                         pass=false
6091                         break
6092                 fi
6093
6094                 #check obj path if record type is LLOG_LOGID_MAGIC
6095                 if [ "$rec" == "1064553b" ]; then
6096                         path=$(do_facet mgs $llog_reader $obj_file |
6097                                 grep "path=" | awk '{ print $NF }' |
6098                                 sed -e "s/^path=//g")
6099                         if [ $obj_file != $mntpt/$path ]; then
6100                                 echo "FAILED test_60a wrong obj path" \
6101                                       "$montpt/$path, should be $obj_file"
6102                                 pass=false
6103                                 break
6104                         fi
6105                 fi
6106         done
6107         rm -f $TMP/$tfile
6108         #restart mgs before "error", otherwise it will block the next test
6109         stop mgs || error "stop mgs failed"
6110         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6111         $pass || error "test failed, see FAILED test_60a messages for specifics"
6112 }
6113 run_test 60a "llog_test run from kernel module and test llog_reader"
6114
6115 test_60aa() {
6116         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
6117
6118         # test old logid format
6119         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6120                 do_facet mgs $LCTL dl | grep MGS
6121                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6122                         error "old llog_print failed"
6123         fi
6124
6125         # test new logid format
6126         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6127                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6128                         error "new llog_print failed"
6129         fi
6130 }
6131 run_test 60aa "llog_print works with FIDs and simple names"
6132
6133 test_60b() { # bug 6411
6134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6135         dmesg > $DIR/$tfile
6136         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6137                                 /llog.test/ {
6138                                         if (marker)
6139                                                 from_marker++
6140                                         from_begin++
6141                                 }
6142                                 END {
6143                                         if (marker)
6144                                                 print from_marker
6145                                         else
6146                                                 print from_begin
6147                                 }")
6148         [[ $LLOG_COUNT -gt 100 ]] &&
6149                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6150 }
6151 run_test 60b "limit repeated messages from CERROR/CWARN ========"
6152
6153 test_60c() {
6154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6155         echo "create 5000 files"
6156         createmany -o $DIR/f60c- 5000
6157 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6158         lctl set_param fail_loc=0x80000137
6159         unlinkmany $DIR/f60c- 5000
6160         lctl set_param fail_loc=0
6161 }
6162 run_test 60c "unlink file when mds full"
6163
6164 test_60d() {
6165         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6166         SAVEPRINTK=$(lctl get_param -n printk)
6167
6168         # verify "lctl mark" is even working"
6169         MESSAGE="test message ID $RANDOM $$"
6170         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6171         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6172
6173         lctl set_param printk=0 || error "set lnet.printk failed"
6174         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6175         MESSAGE="new test message ID $RANDOM $$"
6176         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6177         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6178         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6179
6180         lctl set_param -n printk="$SAVEPRINTK"
6181 }
6182 run_test 60d "test printk console message masking"
6183
6184 test_60e() {
6185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6186         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6187         touch $DIR/$tfile
6188 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6189         do_facet mds1 lctl set_param fail_loc=0x15b
6190         rm $DIR/$tfile
6191 }
6192 run_test 60e "no space while new llog is being created"
6193
6194 test_61() {
6195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6196         f="$DIR/f61"
6197         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
6198         cancel_lru_locks osc
6199         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6200         sync
6201 }
6202 run_test 61 "mmap() writes don't make sync hang ================"
6203
6204 # bug 2330 - insufficient obd_match error checking causes LBUG
6205 test_62() {
6206         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6207         f="$DIR/f62"
6208         echo foo > $f
6209         cancel_lru_locks osc
6210         lctl set_param fail_loc=0x405
6211         cat $f && error "cat succeeded, expect -EIO"
6212         lctl set_param fail_loc=0
6213 }
6214 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6215 # match every page all of the time.
6216 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6217
6218 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6219 # Though this test is irrelevant anymore, it helped to reveal some
6220 # other grant bugs (LU-4482), let's keep it.
6221 test_63a() {   # was test_63
6222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6223         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
6224         for i in `seq 10` ; do
6225                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6226                 sleep 5
6227                 kill $!
6228                 sleep 1
6229         done
6230
6231         rm -f $DIR/f63 || true
6232 }
6233 run_test 63a "Verify oig_wait interruption does not crash ======="
6234
6235 # bug 2248 - async write errors didn't return to application on sync
6236 # bug 3677 - async write errors left page locked
6237 test_63b() {
6238         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6239         debugsave
6240         lctl set_param debug=-1
6241
6242         # ensure we have a grant to do async writes
6243         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6244         rm $DIR/$tfile
6245
6246         sync    # sync lest earlier test intercept the fail_loc
6247
6248         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6249         lctl set_param fail_loc=0x80000406
6250         $MULTIOP $DIR/$tfile Owy && \
6251                 error "sync didn't return ENOMEM"
6252         sync; sleep 2; sync     # do a real sync this time to flush page
6253         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6254                 error "locked page left in cache after async error" || true
6255         debugrestore
6256 }
6257 run_test 63b "async write errors should be returned to fsync ==="
6258
6259 test_64a () {
6260         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6261         df $DIR
6262         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6263 }
6264 run_test 64a "verify filter grant calculations (in kernel) ====="
6265
6266 test_64b () {
6267         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6268         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6269 }
6270 run_test 64b "check out-of-space detection on client"
6271
6272 test_64c() {
6273         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6274 }
6275 run_test 64c "verify grant shrink"
6276
6277 # this does exactly what osc_request.c:osc_announce_cached() does in
6278 # order to calculate max amount of grants to ask from server
6279 want_grant() {
6280         local tgt=$1
6281
6282         local page_size=$(get_page_size client)
6283
6284         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6285         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6286
6287         ((rpc_in_flight ++));
6288         nrpages=$((nrpages * rpc_in_flight))
6289
6290         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6291
6292         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / page_size))
6293
6294         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6295         local undirty=$((nrpages * page_size))
6296
6297         local max_extent_pages
6298         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6299             grep grant_max_extent_size | awk '{print $2}')
6300         max_extent_pages=$((max_extent_pages / page_size))
6301         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6302         local grant_extent_tax
6303         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6304             grep grant_extent_tax | awk '{print $2}')
6305
6306         undirty=$((undirty + nrextents * grant_extent_tax))
6307
6308         echo $undirty
6309 }
6310
6311 # this is size of unit for grant allocation. It should be equal to
6312 # what tgt_grant.c:tgt_grant_chunk() calculates
6313 grant_chunk() {
6314         local tgt=$1
6315         local max_brw_size
6316         local grant_extent_tax
6317
6318         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6319             grep max_brw_size | awk '{print $2}')
6320
6321         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6322             grep grant_extent_tax | awk '{print $2}')
6323
6324         echo $(((max_brw_size + grant_extent_tax) * 2))
6325 }
6326
6327 test_64d() {
6328         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6329                 skip "OST < 2.10.55 doesn't limit grants enough" && return 0
6330
6331         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6332         local file=$DIR/$tfile
6333
6334         [[ $($LCTL get_param osc.${tgt}.import |
6335                     grep "connect_flags:.*grant_param") ]] || \
6336                         { skip "no grant_param connect flag"; return; }
6337
6338         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6339
6340         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6341
6342         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6343         stack_trap "rm -f $file" EXIT
6344
6345         $SETSTRIPE $file -i 0 -c 1
6346         dd if=/dev/zero of=$file bs=1M count=1000 &
6347         ddpid=$!
6348
6349         while true
6350         do
6351                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6352                 if [[ $cur_grant -gt $max_cur_granted ]]
6353                 then
6354                         kill $ddpid
6355                         error "cur_grant $cur_grant > $max_cur_granted"
6356                 fi
6357                 kill -0 $ddpid
6358                 [[ $? -ne 0 ]] && break;
6359                 sleep 2
6360         done
6361
6362         rm -f $DIR/$tfile
6363         wait_delete_completed
6364         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6365 }
6366 run_test 64d "check grant limit exceed"
6367
6368 # bug 1414 - set/get directories' stripe info
6369 test_65a() {
6370         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6371         test_mkdir $DIR/$tdir
6372         touch $DIR/$tdir/f1
6373         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6374 }
6375 run_test 65a "directory with no stripe info"
6376
6377 test_65b() {
6378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6379         test_mkdir $DIR/$tdir
6380         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6381
6382         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6383                                                 error "setstripe"
6384         touch $DIR/$tdir/f2
6385         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6386 }
6387 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6388
6389 test_65c() {
6390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6391         [ $OSTCOUNT -lt 2 ] && skip "need at least 2 OSTs" && return
6392         test_mkdir $DIR/$tdir
6393         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6394
6395         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6396                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6397         touch $DIR/$tdir/f3
6398         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6399 }
6400 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6401
6402 test_65d() {
6403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6404         test_mkdir $DIR/$tdir
6405         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6406         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6407
6408         if [[ $STRIPECOUNT -le 0 ]]; then
6409                 sc=1
6410         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6411 #LOV_MAX_STRIPE_COUNT is 2000
6412                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6413         else
6414                 sc=$(($STRIPECOUNT - 1))
6415         fi
6416         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6417         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6418         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6419                 error "lverify failed"
6420 }
6421 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6422
6423 test_65e() {
6424         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6425         test_mkdir $DIR/$tdir
6426
6427         $SETSTRIPE $DIR/$tdir || error "setstripe"
6428         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6429                                         error "no stripe info failed"
6430         touch $DIR/$tdir/f6
6431         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6432 }
6433 run_test 65e "directory setstripe defaults"
6434
6435 test_65f() {
6436         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6437         test_mkdir $DIR/${tdir}f
6438         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6439 }
6440 run_test 65f "dir setstripe permission (should return error) ==="
6441
6442 test_65g() {
6443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6444         test_mkdir $DIR/$tdir
6445         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6446
6447         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6448                 error "setstripe -S failed"
6449         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6450         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6451                 error "delete default stripe failed"
6452 }
6453 run_test 65g "directory setstripe -d"
6454
6455 test_65h() {
6456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6457         test_mkdir $DIR/$tdir
6458         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6459
6460         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6461                 error "setstripe -S failed"
6462         test_mkdir $DIR/$tdir/dd1
6463         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6464                 error "stripe info inherit failed"
6465 }
6466 run_test 65h "directory stripe info inherit ===================="
6467
6468 test_65i() {
6469         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6470
6471         save_layout_restore_at_exit $MOUNT
6472
6473         # bug6367: set non-default striping on root directory
6474         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6475
6476         # bug12836: getstripe on -1 default directory striping
6477         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6478
6479         # bug12836: getstripe -v on -1 default directory striping
6480         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6481
6482         # bug12836: new find on -1 default directory striping
6483         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6484 }
6485 run_test 65i "various tests to set root directory striping"
6486
6487 test_65j() { # bug6367
6488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6489
6490         sync; sleep 1
6491
6492         # if we aren't already remounting for each test, do so for this test
6493         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6494                 cleanup || error "failed to unmount"
6495                 setup
6496         fi
6497
6498         save_layout_restore_at_exit $MOUNT
6499
6500         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6501 }
6502 run_test 65j "set default striping on root directory (bug 6367)="
6503
6504 cleaup_65k() {
6505         rm -rf $DIR/$tdir
6506         wait_delete_completed
6507         do_facet $SINGLEMDS "lctl set_param -n \
6508                 osp.$ost*MDT0000.max_create_count=$max_count"
6509         do_facet $SINGLEMDS "lctl set_param -n \
6510                 osp.$ost*MDT0000.create_count=$count"
6511         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6512         echo $INACTIVE_OSC "is Activate"
6513
6514         wait_osc_import_state mds ost$ostnum FULL
6515 }
6516
6517 test_65k() { # bug11679
6518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6519         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6520         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6521
6522         local disable_precreate=true
6523         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6524                 disable_precreate=false
6525
6526         echo "Check OST status: "
6527         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6528                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6529
6530         for OSC in $MDS_OSCS; do
6531                 echo $OSC "is active"
6532                 do_facet $SINGLEMDS lctl --device %$OSC activate
6533         done
6534
6535         for INACTIVE_OSC in $MDS_OSCS; do
6536                 local ost=$(osc_to_ost $INACTIVE_OSC)
6537                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6538                                lov.*md*.target_obd |
6539                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6540
6541                 mkdir -p $DIR/$tdir
6542                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6543                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6544
6545                 echo "Deactivate: " $INACTIVE_OSC
6546                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6547
6548                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6549                               osp.$ost*MDT0000.create_count")
6550                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6551                                   osp.$ost*MDT0000.max_create_count")
6552                 $disable_precreate &&
6553                         do_facet $SINGLEMDS "lctl set_param -n \
6554                                 osp.$ost*MDT0000.max_create_count=0"
6555
6556                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6557                         [ -f $DIR/$tdir/$idx ] && continue
6558                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6559                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6560                                 { cleanup_65k;
6561                                   error "setstripe $idx should succeed"; }
6562                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6563                 done
6564                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6565                 rmdir $DIR/$tdir
6566
6567                 do_facet $SINGLEMDS "lctl set_param -n \
6568                         osp.$ost*MDT0000.max_create_count=$max_count"
6569                 do_facet $SINGLEMDS "lctl set_param -n \
6570                         osp.$ost*MDT0000.create_count=$count"
6571                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6572                 echo $INACTIVE_OSC "is Activate"
6573
6574                 wait_osc_import_state mds ost$ostnum FULL
6575         done
6576 }
6577 run_test 65k "validate manual striping works properly with deactivated OSCs"
6578
6579 test_65l() { # bug 12836
6580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6581         test_mkdir -p $DIR/$tdir/test_dir
6582         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6583         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6584 }
6585 run_test 65l "lfs find on -1 stripe dir ========================"
6586
6587 test_65m() {
6588         local layout=$(save_layout $MOUNT)
6589         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6590                 restore_layout $MOUNT $layout
6591                 error "setstripe should fail by non-root users"
6592         }
6593         true
6594 }
6595 run_test 65m "normal user can't set filesystem default stripe"
6596
6597 # bug 2543 - update blocks count on client
6598 test_66() {
6599         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6600         COUNT=${COUNT:-8}
6601         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6602         sync; sync_all_data; sync; sync_all_data
6603         cancel_lru_locks osc
6604         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6605         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6606 }
6607 run_test 66 "update inode blocks count on client ==============="
6608
6609 meminfo() {
6610         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6611 }
6612
6613 swap_used() {
6614         swapon -s | awk '($1 == "'$1'") { print $4 }'
6615 }
6616
6617 # bug5265, obdfilter oa2dentry return -ENOENT
6618 # #define OBD_FAIL_SRV_ENOENT 0x217
6619 test_69() {
6620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6621         remote_ost_nodsh && skip "remote OST with nodsh" && return
6622
6623         f="$DIR/$tfile"
6624         $SETSTRIPE -c 1 -i 0 $f
6625
6626         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6627
6628         do_facet ost1 lctl set_param fail_loc=0x217
6629         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6630         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6631
6632         do_facet ost1 lctl set_param fail_loc=0
6633         $DIRECTIO write $f 0 2 || error "write error"
6634
6635         cancel_lru_locks osc
6636         $DIRECTIO read $f 0 1 || error "read error"
6637
6638         do_facet ost1 lctl set_param fail_loc=0x217
6639         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6640
6641         do_facet ost1 lctl set_param fail_loc=0
6642         rm -f $f
6643 }
6644 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6645
6646 test_71() {
6647         test_mkdir $DIR/$tdir
6648         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6649         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6650 }
6651 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6652
6653 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6655         [ "$RUNAS_ID" = "$UID" ] &&
6656                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6657
6658         # Check that testing environment is properly set up. Skip if not
6659         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
6660                 skip_env "User $RUNAS_ID does not exist - skipping"
6661                 return 0
6662         }
6663         touch $DIR/$tfile
6664         chmod 777 $DIR/$tfile
6665         chmod ug+s $DIR/$tfile
6666         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6667                 error "$RUNAS dd $DIR/$tfile failed"
6668         # See if we are still setuid/sgid
6669         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6670                 error "S/gid is not dropped on write"
6671         # Now test that MDS is updated too
6672         cancel_lru_locks mdc
6673         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6674                 error "S/gid is not dropped on MDS"
6675         rm -f $DIR/$tfile
6676 }
6677 run_test 72a "Test that remove suid works properly (bug5695) ===="
6678
6679 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6680         local perm
6681
6682         [ "$RUNAS_ID" = "$UID" ] && \
6683                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6684         [ "$RUNAS_ID" -eq 0 ] && \
6685                 skip_env "RUNAS_ID = 0 -- skipping" && return
6686
6687         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6688         # Check that testing environment is properly set up. Skip if not
6689         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
6690                 skip_env "User $RUNAS_ID does not exist - skipping"
6691                 return 0
6692         }
6693         touch $DIR/${tfile}-f{g,u}
6694         test_mkdir $DIR/${tfile}-dg
6695         test_mkdir $DIR/${tfile}-du
6696         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6697         chmod g+s $DIR/${tfile}-{f,d}g
6698         chmod u+s $DIR/${tfile}-{f,d}u
6699         for perm in 777 2777 4777; do
6700                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6701                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6702                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6703                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6704         done
6705         true
6706 }
6707 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6708
6709 # bug 3462 - multiple simultaneous MDC requests
6710 test_73() {
6711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6712         test_mkdir $DIR/d73-1
6713         test_mkdir $DIR/d73-2
6714         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6715         pid1=$!
6716
6717         lctl set_param fail_loc=0x80000129
6718         $MULTIOP $DIR/d73-1/f73-2 Oc &
6719         sleep 1
6720         lctl set_param fail_loc=0
6721
6722         $MULTIOP $DIR/d73-2/f73-3 Oc &
6723         pid3=$!
6724
6725         kill -USR1 $pid1
6726         wait $pid1 || return 1
6727
6728         sleep 25
6729
6730         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6731         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6732         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6733
6734         rm -rf $DIR/d73-*
6735 }
6736 run_test 73 "multiple MDC requests (should not deadlock)"
6737
6738 test_74a() { # bug 6149, 6184
6739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6740         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6741         #
6742         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6743         # will spin in a tight reconnection loop
6744         touch $DIR/f74a
6745         $LCTL set_param fail_loc=0x8000030e
6746         # get any lock that won't be difficult - lookup works.
6747         ls $DIR/f74a
6748         $LCTL set_param fail_loc=0
6749         rm -f $DIR/f74a
6750         true
6751 }
6752 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6753
6754 test_74b() { # bug 13310
6755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6756         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6757         #
6758         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6759         # will spin in a tight reconnection loop
6760         $LCTL set_param fail_loc=0x8000030e
6761         # get a "difficult" lock
6762         touch $DIR/f74b
6763         $LCTL set_param fail_loc=0
6764         rm -f $DIR/f74b
6765         true
6766 }
6767 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6768
6769 test_74c() {
6770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6771         #define OBD_FAIL_LDLM_NEW_LOCK
6772         $LCTL set_param fail_loc=0x319
6773         touch $DIR/$tfile && error "touch successful"
6774         $LCTL set_param fail_loc=0
6775         true
6776 }
6777 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6778
6779 num_inodes() {
6780         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6781 }
6782
6783 test_76() { # Now for bug 20433, added originally in bug 1443
6784         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6785         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6786         cancel_lru_locks osc
6787         BEFORE_INODES=$(num_inodes)
6788         echo "before inodes: $BEFORE_INODES"
6789         local COUNT=1000
6790         [ "$SLOW" = "no" ] && COUNT=100
6791         for i in $(seq $COUNT); do
6792                 touch $DIR/$tfile
6793                 rm -f $DIR/$tfile
6794         done
6795         cancel_lru_locks osc
6796         AFTER_INODES=$(num_inodes)
6797         echo "after inodes: $AFTER_INODES"
6798         local wait=0
6799         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6800                 sleep 2
6801                 AFTER_INODES=$(num_inodes)
6802                 wait=$((wait+2))
6803                 echo "wait $wait seconds inodes: $AFTER_INODES"
6804                 if [ $wait -gt 30 ]; then
6805                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6806                 fi
6807         done
6808 }
6809 run_test 76 "confirm clients recycle inodes properly ===="
6810
6811
6812 export ORIG_CSUM=""
6813 set_checksums()
6814 {
6815         # Note: in sptlrpc modes which enable its own bulk checksum, the
6816         # original crc32_le bulk checksum will be automatically disabled,
6817         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6818         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6819         # In this case set_checksums() will not be no-op, because sptlrpc
6820         # bulk checksum will be enabled all through the test.
6821
6822         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6823         lctl set_param -n osc.*.checksums $1
6824         return 0
6825 }
6826
6827 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6828                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6829 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6830 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6831 set_checksum_type()
6832 {
6833         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6834         log "set checksum type to $1"
6835         return 0
6836 }
6837 F77_TMP=$TMP/f77-temp
6838 F77SZ=8
6839 setup_f77() {
6840         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6841                 error "error writing to $F77_TMP"
6842 }
6843
6844 test_77a() { # bug 10889
6845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6846         $GSS && skip "could not run with gss" && return
6847         [ ! -f $F77_TMP ] && setup_f77
6848         set_checksums 1
6849         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6850         set_checksums 0
6851         rm -f $DIR/$tfile
6852 }
6853 run_test 77a "normal checksum read/write operation"
6854
6855 test_77b() { # bug 10889
6856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6857         $GSS && skip "could not run with gss" && return
6858         [ ! -f $F77_TMP ] && setup_f77
6859         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6860         $LCTL set_param fail_loc=0x80000409
6861         set_checksums 1
6862
6863         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6864                 error "dd error: $?"
6865         $LCTL set_param fail_loc=0
6866
6867         for algo in $CKSUM_TYPES; do
6868                 cancel_lru_locks osc
6869                 set_checksum_type $algo
6870                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6871                 $LCTL set_param fail_loc=0x80000408
6872                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6873                 $LCTL set_param fail_loc=0
6874         done
6875         set_checksums 0
6876         set_checksum_type $ORIG_CSUM_TYPE
6877         rm -f $DIR/$tfile
6878 }
6879 run_test 77b "checksum error on client write, read"
6880
6881 cleanup_77c() {
6882         trap 0
6883         set_checksums 0
6884         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6885         $check_ost &&
6886                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6887         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6888         $check_ost && [ -n $ost_file_prefix ] &&
6889                 do_facet ost1 rm -f ${ost_file_prefix}\*
6890 }
6891
6892 test_77c() {
6893         remote_ost_nodsh && skip "remote OST with nodsh" && return
6894
6895         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6896         $GSS && skip "could not run with gss" && return
6897
6898         local bad1
6899         local osc_file_prefix
6900         local osc_file
6901         local check_ost=false
6902         local ost_file_prefix
6903         local ost_file
6904         local orig_cksum
6905         local dump_cksum
6906         local fid
6907
6908         # ensure corruption will occur on first OSS/OST
6909         $LFS setstripe -i 0 $DIR/$tfile
6910
6911         [ ! -f $F77_TMP ] && setup_f77
6912         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6913                 error "dd write error: $?"
6914         fid=$($LFS path2fid $DIR/$tfile)
6915
6916         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6917         then
6918                 check_ost=true
6919                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6920                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6921         else
6922                 echo "OSS do not support bulk pages dump upon error"
6923         fi
6924
6925         osc_file_prefix=$($LCTL get_param -n debug_path)
6926         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6927
6928         trap cleanup_77c EXIT
6929
6930         set_checksums 1
6931         # enable bulk pages dump upon error on Client
6932         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6933         # enable bulk pages dump upon error on OSS
6934         $check_ost &&
6935                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6936
6937         # flush Client cache to allow next read to reach OSS
6938         cancel_lru_locks osc
6939
6940         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6941         $LCTL set_param fail_loc=0x80000408
6942         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6943         $LCTL set_param fail_loc=0
6944
6945         rm -f $DIR/$tfile
6946
6947         # check cksum dump on Client
6948         osc_file=$(ls ${osc_file_prefix}*)
6949         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6950         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6951         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6952         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6953         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6954                      cksum)
6955         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6956         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6957                 error "dump content does not match on Client"
6958
6959         $check_ost || { skip "No need to check cksum dump on OSS"; return 0; }
6960
6961         # check cksum dump on OSS
6962         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6963         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6964         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6965         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6966         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6967                 error "dump content does not match on OSS"
6968
6969         cleanup_77c
6970 }
6971 run_test 77c "checksum error on client read with debug"
6972
6973 test_77d() { # bug 10889
6974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6975         $GSS && skip "could not run with gss" && return
6976         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6977         $LCTL set_param fail_loc=0x80000409
6978         set_checksums 1
6979         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6980                 error "direct write: rc=$?"
6981         $LCTL set_param fail_loc=0
6982         set_checksums 0
6983
6984         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6985         $LCTL set_param fail_loc=0x80000408
6986         set_checksums 1
6987         cancel_lru_locks osc
6988         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6989                 error "direct read: rc=$?"
6990         $LCTL set_param fail_loc=0
6991         set_checksums 0
6992 }
6993 run_test 77d "checksum error on OST direct write, read"
6994
6995 test_77f() { # bug 10889
6996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6997         $GSS && skip "could not run with gss" && return
6998         set_checksums 1
6999         for algo in $CKSUM_TYPES; do
7000                 cancel_lru_locks osc
7001                 set_checksum_type $algo
7002                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7003                 $LCTL set_param fail_loc=0x409
7004                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7005                         error "direct write succeeded"
7006                 $LCTL set_param fail_loc=0
7007         done
7008         set_checksum_type $ORIG_CSUM_TYPE
7009         set_checksums 0
7010 }
7011 run_test 77f "repeat checksum error on write (expect error)"
7012
7013 test_77g() { # bug 10889
7014         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7015         $GSS && skip "could not run with gss" && return
7016         remote_ost_nodsh && skip "remote OST with nodsh" && return
7017
7018         [ ! -f $F77_TMP ] && setup_f77
7019
7020         local file=$DIR/$tfile
7021         stack_trap "rm -f $file" EXIT
7022
7023         $SETSTRIPE -c 1 -i 0 $file
7024         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7025         do_facet ost1 lctl set_param fail_loc=0x8000021a
7026         set_checksums 1
7027         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7028                 error "write error: rc=$?"
7029         do_facet ost1 lctl set_param fail_loc=0
7030         set_checksums 0
7031
7032         cancel_lru_locks osc
7033         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7034         do_facet ost1 lctl set_param fail_loc=0x8000021b
7035         set_checksums 1
7036         cmp $F77_TMP $file || error "file compare failed"
7037         do_facet ost1 lctl set_param fail_loc=0
7038         set_checksums 0
7039 }
7040 run_test 77g "checksum error on OST write, read"
7041
7042 test_77j() { # bug 13805
7043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7044         $GSS && skip "could not run with gss" && return
7045         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
7046         lctl set_param fail_loc=0x40c
7047         remount_client $MOUNT
7048         lctl set_param fail_loc=0
7049         # wait async osc connect to finish and reflect updated state value
7050         local i
7051         for (( i=0; i < OSTCOUNT; i++ )) ; do
7052                 wait_osc_import_state client ost$((i+1)) FULL
7053         done
7054
7055         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
7056                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
7057                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
7058                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
7059         done
7060         remount_client $MOUNT
7061 }
7062 run_test 77j "client only supporting ADLER32"
7063
7064 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7065 rm -f $F77_TMP
7066 unset F77_TMP
7067
7068 cleanup_test_78() {
7069         trap 0
7070         rm -f $DIR/$tfile
7071 }
7072
7073 test_78() { # bug 10901
7074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7075         remote_ost || { skip_env "local OST" && return; }
7076
7077         NSEQ=5
7078         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7079         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7080         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7081         echo "MemTotal: $MEMTOTAL"
7082
7083         # reserve 256MB of memory for the kernel and other running processes,
7084         # and then take 1/2 of the remaining memory for the read/write buffers.
7085         if [ $MEMTOTAL -gt 512 ] ;then
7086                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7087         else
7088                 # for those poor memory-starved high-end clusters...
7089                 MEMTOTAL=$((MEMTOTAL / 2))
7090         fi
7091         echo "Mem to use for directio: $MEMTOTAL"
7092
7093         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7094         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7095         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7096         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7097                 head -n1)
7098         echo "Smallest OST: $SMALLESTOST"
7099         [[ $SMALLESTOST -lt 10240 ]] &&
7100                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
7101
7102         trap cleanup_test_78 EXIT
7103
7104         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7105                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7106
7107         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7108         echo "File size: $F78SIZE"
7109         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7110         for i in $(seq 1 $NSEQ); do
7111                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7112                 echo directIO rdwr round $i of $NSEQ
7113                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7114         done
7115
7116         cleanup_test_78
7117 }
7118 run_test 78 "handle large O_DIRECT writes correctly ============"
7119
7120 test_79() { # bug 12743
7121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7122         wait_delete_completed
7123
7124         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7125         BKFREE=$(calc_osc_kbytes kbytesfree)
7126         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7127
7128         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7129         DFTOTAL=`echo $STRING | cut -d, -f1`
7130         DFUSED=`echo $STRING  | cut -d, -f2`
7131         DFAVAIL=`echo $STRING | cut -d, -f3`
7132         DFFREE=$(($DFTOTAL - $DFUSED))
7133
7134         ALLOWANCE=$((64 * $OSTCOUNT))
7135
7136         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7137            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7138                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7139         fi
7140         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7141            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7142                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7143         fi
7144         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7145            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7146                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7147         fi
7148 }
7149 run_test 79 "df report consistency check ======================="
7150
7151 test_80() { # bug 10718
7152         remote_ost_nodsh && skip "remote OST with nodsh" && return
7153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7154         # relax strong synchronous semantics for slow backends like ZFS
7155         local soc="obdfilter.*.sync_on_lock_cancel"
7156         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7157         local hosts=
7158         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
7159                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7160                           facet_active_host $host; done | sort -u)
7161                 do_nodes $hosts lctl set_param $soc=never
7162         fi
7163
7164         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7165         sync; sleep 1; sync
7166         local BEFORE=`date +%s`
7167         cancel_lru_locks osc
7168         local AFTER=`date +%s`
7169         local DIFF=$((AFTER-BEFORE))
7170         if [ $DIFF -gt 1 ] ; then
7171                 error "elapsed for 1M@1T = $DIFF"
7172         fi
7173
7174         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7175
7176         rm -f $DIR/$tfile
7177 }
7178 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7179
7180 test_81a() { # LU-456
7181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7182         remote_ost_nodsh && skip "remote OST with nodsh" && return
7183         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7184         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7185         do_facet ost1 lctl set_param fail_loc=0x80000228
7186
7187         # write should trigger a retry and success
7188         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7189         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7190         RC=$?
7191         if [ $RC -ne 0 ] ; then
7192                 error "write should success, but failed for $RC"
7193         fi
7194 }
7195 run_test 81a "OST should retry write when get -ENOSPC ==============="
7196
7197 test_81b() { # LU-456
7198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7199         remote_ost_nodsh && skip "remote OST with nodsh" && return
7200         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7201         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7202         do_facet ost1 lctl set_param fail_loc=0x228
7203
7204         # write should retry several times and return -ENOSPC finally
7205         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7206         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7207         RC=$?
7208         ENOSPC=28
7209         if [ $RC -ne $ENOSPC ] ; then
7210                 error "dd should fail for -ENOSPC, but succeed."
7211         fi
7212 }
7213 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7214
7215 test_82() { # LU-1031
7216         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7217         local gid1=14091995
7218         local gid2=16022000
7219
7220         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7221         local MULTIPID1=$!
7222         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7223         local MULTIPID2=$!
7224         kill -USR1 $MULTIPID2
7225         sleep 2
7226         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7227                 error "First grouplock does not block second one"
7228         else
7229                 echo "Second grouplock blocks first one"
7230         fi
7231         kill -USR1 $MULTIPID1
7232         wait $MULTIPID1
7233         wait $MULTIPID2
7234 }
7235 run_test 82 "Basic grouplock test"
7236
7237 test_83() {
7238         local sfile="/boot/System.map-$(uname -r)"
7239         [ ! -f $sfile ] && skip "No $sfile found" && return
7240         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7241         $LCTL set_param fail_loc=0x140d
7242         cp $sfile $DIR/$tfile || error "write failed"
7243         diff -c $sfile $DIR/$tfile || error "files are different"
7244         $LCTL set_param fail_loc=0
7245         rm -f $DIR/$tfile
7246 }
7247 run_test 83 "Short write in ptask ==============================="
7248
7249 test_99() {
7250         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
7251                 return
7252         test_mkdir $DIR/$tdir.cvsroot
7253         chown $RUNAS_ID $DIR/$tdir.cvsroot
7254
7255         cd $TMP
7256         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7257
7258         cd /etc/init.d
7259         # some versions of cvs import exit(1) when asked to import links or
7260         # files they can't read.  ignore those files.
7261         local toignore=$(find . -type l -printf '-I %f\n' -o \
7262                          ! -perm /4 -printf '-I %f\n')
7263         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7264                 $tdir.reposname vtag rtag
7265
7266         cd $DIR
7267         test_mkdir $DIR/$tdir.reposname
7268         chown $RUNAS_ID $DIR/$tdir.reposname
7269         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7270
7271         cd $DIR/$tdir.reposname
7272         $RUNAS touch foo99
7273         $RUNAS cvs add -m 'addmsg' foo99
7274         $RUNAS cvs update
7275         $RUNAS cvs commit -m 'nomsg' foo99
7276         rm -fr $DIR/$tdir.cvsroot
7277 }
7278 run_test 99 "cvs strange file/directory operations"
7279
7280 test_100() {
7281         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7282         [[ "$NETTYPE" =~ tcp ]] ||
7283                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
7284                         return ; }
7285
7286         remote_ost_nodsh && skip "remote OST with nodsh" && return
7287         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7288         remote_servers ||
7289                 { skip "useless for local single node setup" && return; }
7290
7291         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7292                 [ "$PROT" != "tcp" ] && continue
7293                 RPORT=$(echo $REMOTE | cut -d: -f2)
7294                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7295
7296                 rc=0
7297                 LPORT=`echo $LOCAL | cut -d: -f2`
7298                 if [ $LPORT -ge 1024 ]; then
7299                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7300                         netstat -tna
7301                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7302                 fi
7303         done
7304         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7305 }
7306 run_test 100 "check local port using privileged port ==========="
7307
7308 function get_named_value()
7309 {
7310     local tag
7311
7312     tag=$1
7313     while read ;do
7314         line=$REPLY
7315         case $line in
7316         $tag*)
7317             echo $line | sed "s/^$tag[ ]*//"
7318             break
7319             ;;
7320         esac
7321     done
7322 }
7323
7324 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7325                    awk '/^max_cached_mb/ { print $2 }')
7326
7327 cleanup_101a() {
7328         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7329         trap 0
7330 }
7331
7332 test_101a() {
7333         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7334         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
7335         local s
7336         local discard
7337         local nreads=10000
7338         local cache_limit=32
7339
7340         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7341         trap cleanup_101a EXIT
7342         $LCTL set_param -n llite.*.read_ahead_stats 0
7343         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7344
7345         #
7346         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7347         #
7348         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7349         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7350
7351         discard=0
7352         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7353                 get_named_value 'read but discarded' | cut -d" " -f1); do
7354                         discard=$(($discard + $s))
7355         done
7356         cleanup_101a
7357
7358         if [[ $(($discard * 10)) -gt $nreads ]]; then
7359                 $LCTL get_param osc.*-osc*.rpc_stats
7360                 $LCTL get_param llite.*.read_ahead_stats
7361                 error "too many ($discard) discarded pages"
7362         fi
7363         rm -f $DIR/$tfile || true
7364 }
7365 run_test 101a "check read-ahead for random reads"
7366
7367 setup_test101bc() {
7368         test_mkdir $DIR/$tdir
7369         local STRIPE_SIZE=$1
7370         local FILE_LENGTH=$2
7371         STRIPE_OFFSET=0
7372
7373         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7374
7375         local list=$(comma_list $(osts_nodes))
7376         set_osd_param $list '' read_cache_enable 0
7377         set_osd_param $list '' writethrough_cache_enable 0
7378
7379         trap cleanup_test101bc EXIT
7380         # prepare the read-ahead file
7381         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7382
7383         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7384                                 count=$FILE_SIZE_MB 2> /dev/null
7385
7386 }
7387
7388 cleanup_test101bc() {
7389         trap 0
7390         rm -rf $DIR/$tdir
7391         rm -f $DIR/$tfile
7392
7393         local list=$(comma_list $(osts_nodes))
7394         set_osd_param $list '' read_cache_enable 1
7395         set_osd_param $list '' writethrough_cache_enable 1
7396 }
7397
7398 calc_total() {
7399         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7400 }
7401
7402 ra_check_101() {
7403         local READ_SIZE=$1
7404         local STRIPE_SIZE=$2
7405         local FILE_LENGTH=$3
7406         local RA_INC=1048576
7407         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7408         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7409                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7410         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7411                         get_named_value 'read but discarded' |
7412                         cut -d" " -f1 | calc_total)
7413         if [[ $DISCARD -gt $discard_limit ]]; then
7414                 $LCTL get_param llite.*.read_ahead_stats
7415                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7416         else
7417                 echo "Read-ahead success for size ${READ_SIZE}"
7418         fi
7419 }
7420
7421 test_101b() {
7422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7423         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7424         local STRIPE_SIZE=1048576
7425         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7426         if [ $SLOW == "yes" ]; then
7427                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7428         else
7429                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7430         fi
7431
7432         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7433
7434         # prepare the read-ahead file
7435         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7436         cancel_lru_locks osc
7437         for BIDX in 2 4 8 16 32 64 128 256
7438         do
7439                 local BSIZE=$((BIDX*4096))
7440                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7441                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7442                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7443                 $LCTL set_param -n llite.*.read_ahead_stats 0
7444                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7445                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7446                 cancel_lru_locks osc
7447                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7448         done
7449         cleanup_test101bc
7450         true
7451 }
7452 run_test 101b "check stride-io mode read-ahead ================="
7453
7454 test_101c() {
7455         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7456         local STRIPE_SIZE=1048576
7457         local FILE_LENGTH=$((STRIPE_SIZE*100))
7458         local nreads=10000
7459         local osc_rpc_stats
7460
7461         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7462
7463         cancel_lru_locks osc
7464         $LCTL set_param osc.*.rpc_stats 0
7465         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7466         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7467                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7468                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7469                 local size
7470
7471                 if [ $lines -le 20 ]; then
7472                         continue
7473                 fi
7474                 for size in 1 2 4 8; do
7475                         local rpc=$(echo "$stats" |
7476                                     awk '($1 == "'$size':") {print $2; exit; }')
7477                         [ $rpc != 0 ] &&
7478                                 error "Small $((size*4))k read IO $rpc !"
7479                 done
7480                 echo "$osc_rpc_stats check passed!"
7481         done
7482         cleanup_test101bc
7483         true
7484 }
7485 run_test 101c "check stripe_size aligned read-ahead ================="
7486
7487 set_read_ahead() {
7488         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7489         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7490 }
7491
7492 test_101d() {
7493         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7494         local file=$DIR/$tfile
7495         local sz_MB=${FILESIZE_101d:-500}
7496         local ra_MB=${READAHEAD_MB:-40}
7497
7498         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7499         [ $free_MB -lt $sz_MB ] &&
7500                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
7501
7502         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7503         $SETSTRIPE -c -1 $file || error "setstripe failed"
7504
7505         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7506         echo Cancel LRU locks on lustre client to flush the client cache
7507         cancel_lru_locks osc
7508
7509         echo Disable read-ahead
7510         local old_READAHEAD=$(set_read_ahead 0)
7511
7512         echo Reading the test file $file with read-ahead disabled
7513         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7514
7515         echo Cancel LRU locks on lustre client to flush the client cache
7516         cancel_lru_locks osc
7517         echo Enable read-ahead with ${ra_MB}MB
7518         set_read_ahead $ra_MB
7519
7520         echo Reading the test file $file with read-ahead enabled
7521         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7522
7523         echo "read-ahead disabled time read $raOFF"
7524         echo "read-ahead enabled  time read $raON"
7525
7526         set_read_ahead $old_READAHEAD
7527         rm -f $file
7528         wait_delete_completed
7529
7530         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7531                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7532 }
7533 run_test 101d "file read with and without read-ahead enabled"
7534
7535 test_101e() {
7536         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7537         local file=$DIR/$tfile
7538         local size_KB=500  #KB
7539         local count=100
7540         local bsize=1024
7541
7542         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7543         local need_KB=$((count * size_KB))
7544         [[ $free_KB -le $need_KB ]] &&
7545                 skip_env "Need free space $need_KB, have $free_KB" && return
7546
7547         echo "Creating $count ${size_KB}K test files"
7548         for ((i = 0; i < $count; i++)); do
7549                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7550         done
7551
7552         echo "Cancel LRU locks on lustre client to flush the client cache"
7553         cancel_lru_locks $OSC
7554
7555         echo "Reset readahead stats"
7556         $LCTL set_param -n llite.*.read_ahead_stats 0
7557
7558         for ((i = 0; i < $count; i++)); do
7559                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7560         done
7561
7562         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7563                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7564
7565         for ((i = 0; i < $count; i++)); do
7566                 rm -rf $file.$i 2>/dev/null
7567         done
7568
7569         #10000 means 20% reads are missing in readahead
7570         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7571 }
7572 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7573
7574 test_101f() {
7575         which iozone || { skip "no iozone installed" && return; }
7576
7577         local old_debug=$($LCTL get_param debug)
7578         old_debug=${old_debug#*=}
7579         $LCTL set_param debug="reada mmap"
7580
7581         # create a test file
7582         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7583
7584         echo Cancel LRU locks on lustre client to flush the client cache
7585         cancel_lru_locks osc
7586
7587         echo Reset readahead stats
7588         $LCTL set_param -n llite.*.read_ahead_stats 0
7589
7590         echo mmap read the file with small block size
7591         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7592                 > /dev/null 2>&1
7593
7594         echo checking missing pages
7595         $LCTL get_param llite.*.read_ahead_stats
7596         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7597                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7598
7599         $LCTL set_param debug="$old_debug"
7600         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7601         rm -f $DIR/$tfile
7602 }
7603 run_test 101f "check mmap read performance"
7604
7605 test_101g_brw_size_test() {
7606         local mb=$1
7607         local pages=$((mb * 1048576 / $(page_size)))
7608         local file=$DIR/$tfile
7609
7610         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7611                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7612         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7613                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7614                         return 2
7615         done
7616
7617         stack_trap "rm -f $file" EXIT
7618         $LCTL set_param -n osc.*.rpc_stats=0
7619
7620         # 10 RPCs should be enough for the test
7621         local count=10
7622         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7623                 { error "dd write ${mb} MB blocks failed"; return 3; }
7624         cancel_lru_locks osc
7625         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7626                 { error "dd write ${mb} MB blocks failed"; return 4; }
7627
7628         # calculate number of full-sized read and write RPCs
7629         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7630                 sed -n '/pages per rpc/,/^$/p' |
7631                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7632                 END { print reads,writes }'))
7633         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7634                 return 5
7635         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7636                 return 6
7637
7638         return 0
7639 }
7640
7641 test_101g() {
7642         remote_ost_nodsh && skip "remote OST with nodsh" && return
7643
7644         local rpcs
7645         local osts=$(get_facets OST)
7646         local list=$(comma_list $(osts_nodes))
7647         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7648         local brw_size="obdfilter.*.brw_size"
7649         local ostver=$(lustre_version_code ost1)
7650         local cliver=$(lustre_version_code client)
7651
7652         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7653
7654         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7655         if [ $ostver -ge $(version_code 2.8.52) -o \
7656              \( $ostver -ge $(version_code 2.7.17) -a \
7657                 $ostver -lt $(version_code 2.7.50) \) ] &&
7658            [ $cliver -ge $(version_code 2.8.52) -o \
7659              \( $cliver -ge $(version_code 2.7.17) -a \
7660                 $cliver -lt $(version_code 2.7.50) \) ]; then
7661                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7662                 if [[ $orig_mb -lt 16 ]]; then
7663                         save_lustre_params $osts "$brw_size" > $p
7664                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7665                                 error "set 16MB RPC size failed"
7666
7667                         echo "remount client to enable new RPC size"
7668                         remount_client $MOUNT || error "remount_client failed"
7669                 fi
7670
7671                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7672                 # should be able to set brw_size=12, but no rpc_stats for that
7673                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7674         fi
7675
7676         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7677
7678         if [[ $orig_mb -lt 16 ]]; then
7679                 restore_lustre_params < $p
7680                 remount_client $MOUNT || error "remount_client restore failed"
7681         fi
7682
7683         rm -f $p $DIR/$tfile
7684 }
7685 run_test 101g "Big bulk(4/16 MiB) readahead"
7686
7687 setup_test102() {
7688         test_mkdir $DIR/$tdir
7689         chown $RUNAS_ID $DIR/$tdir
7690         STRIPE_SIZE=65536
7691         STRIPE_OFFSET=1
7692         STRIPE_COUNT=$OSTCOUNT
7693         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7694
7695         trap cleanup_test102 EXIT
7696         cd $DIR
7697         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7698         cd $DIR/$tdir
7699         for num in 1 2 3 4; do
7700                 for count in $(seq 1 $STRIPE_COUNT); do
7701                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7702                                 local size=`expr $STRIPE_SIZE \* $num`
7703                                 local file=file"$num-$idx-$count"
7704                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7705                         done
7706                 done
7707         done
7708
7709         cd $DIR
7710         $1 tar cf $TMP/f102.tar $tdir --xattrs
7711 }
7712
7713 cleanup_test102() {
7714         trap 0
7715         rm -f $TMP/f102.tar
7716         rm -rf $DIR/d0.sanity/d102
7717 }
7718
7719 test_102a() {
7720         local testfile=$DIR/$tfile
7721
7722         touch $testfile
7723
7724         [ "$UID" != 0 ] && skip_env "must run as root" && return
7725         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7726                 skip_env "must have user_xattr" && return
7727
7728         [ -z "$(which setfattr 2>/dev/null)" ] &&
7729                 skip_env "could not find setfattr" && return
7730
7731         echo "set/get xattr..."
7732         setfattr -n trusted.name1 -v value1 $testfile ||
7733                 error "setfattr -n trusted.name1=value1 $testfile failed"
7734         getfattr -n trusted.name1 $testfile 2> /dev/null |
7735           grep "trusted.name1=.value1" ||
7736                 error "$testfile missing trusted.name1=value1"
7737
7738         setfattr -n user.author1 -v author1 $testfile ||
7739                 error "setfattr -n user.author1=author1 $testfile failed"
7740         getfattr -n user.author1 $testfile 2> /dev/null |
7741           grep "user.author1=.author1" ||
7742                 error "$testfile missing trusted.author1=author1"
7743
7744         echo "listxattr..."
7745         setfattr -n trusted.name2 -v value2 $testfile ||
7746                 error "$testfile unable to set trusted.name2"
7747         setfattr -n trusted.name3 -v value3 $testfile ||
7748                 error "$testfile unable to set trusted.name3"
7749         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7750             grep "trusted.name" | wc -l) -eq 3 ] ||
7751                 error "$testfile missing 3 trusted.name xattrs"
7752
7753         setfattr -n user.author2 -v author2 $testfile ||
7754                 error "$testfile unable to set user.author2"
7755         setfattr -n user.author3 -v author3 $testfile ||
7756                 error "$testfile unable to set user.author3"
7757         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7758             grep "user.author" | wc -l) -eq 3 ] ||
7759                 error "$testfile missing 3 user.author xattrs"
7760
7761         echo "remove xattr..."
7762         setfattr -x trusted.name1 $testfile ||
7763                 error "$testfile error deleting trusted.name1"
7764         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7765                 error "$testfile did not delete trusted.name1 xattr"
7766
7767         setfattr -x user.author1 $testfile ||
7768                 error "$testfile error deleting user.author1"
7769         echo "set lustre special xattr ..."
7770         $LFS setstripe -c1 $testfile
7771         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7772                 awk -F "=" '/trusted.lov/ { print $2 }' )
7773         setfattr -n "trusted.lov" -v $lovea $testfile ||
7774                 error "$testfile doesn't ignore setting trusted.lov again"
7775         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7776                 error "$testfile allow setting invalid trusted.lov"
7777         rm -f $testfile
7778 }
7779 run_test 102a "user xattr test =================================="
7780
7781 test_102b() {
7782         [ -z "$(which setfattr 2>/dev/null)" ] &&
7783                 skip_env "could not find setfattr" && return
7784
7785         # b10930: get/set/list trusted.lov xattr
7786         echo "get/set/list trusted.lov xattr ..."
7787         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7788         local testfile=$DIR/$tfile
7789         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7790                 error "setstripe failed"
7791         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7792                 error "getstripe failed"
7793         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7794                 error "can't get trusted.lov from $testfile"
7795
7796         local testfile2=${testfile}2
7797         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7798                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7799
7800         $MCREATE $testfile2
7801         setfattr -n trusted.lov -v $value $testfile2
7802         local stripe_size=$($GETSTRIPE -S $testfile2)
7803         local stripe_count=$($GETSTRIPE -c $testfile2)
7804         [[ $stripe_size -eq 65536 ]] ||
7805                 error "stripe size $stripe_size != 65536"
7806         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7807                 error "stripe count $stripe_count != $STRIPECOUNT"
7808         rm -f $DIR/$tfile
7809 }
7810 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7811
7812 test_102c() {
7813         [ -z "$(which setfattr 2>/dev/null)" ] &&
7814                 skip_env "could not find setfattr" && return
7815
7816         # b10930: get/set/list lustre.lov xattr
7817         echo "get/set/list lustre.lov xattr ..."
7818         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7819         test_mkdir $DIR/$tdir
7820         chown $RUNAS_ID $DIR/$tdir
7821         local testfile=$DIR/$tdir/$tfile
7822         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7823                 error "setstripe failed"
7824         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7825                 error "getstripe failed"
7826         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7827         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7828
7829         local testfile2=${testfile}2
7830         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7831                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7832
7833         $RUNAS $MCREATE $testfile2
7834         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7835         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7836         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7837         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7838         [ $stripe_count -eq $STRIPECOUNT ] ||
7839                 error "stripe count $stripe_count != $STRIPECOUNT"
7840 }
7841 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7842
7843 compare_stripe_info1() {
7844         local stripe_index_all_zero=true
7845
7846         for num in 1 2 3 4; do
7847                 for count in $(seq 1 $STRIPE_COUNT); do
7848                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7849                                 local size=$((STRIPE_SIZE * num))
7850                                 local file=file"$num-$offset-$count"
7851                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7852                                 [[ $stripe_size -ne $size ]] &&
7853                                     error "$file: size $stripe_size != $size"
7854                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7855                                 # allow fewer stripes to be created, ORI-601
7856                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7857                                     error "$file: count $stripe_count != $count"
7858                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7859                                 [[ $stripe_index -ne 0 ]] &&
7860                                         stripe_index_all_zero=false
7861                         done
7862                 done
7863         done
7864         $stripe_index_all_zero &&
7865                 error "all files are being extracted starting from OST index 0"
7866         return 0
7867 }
7868
7869 have_xattrs_include() {
7870         tar --help | grep -q xattrs-include &&
7871                 echo --xattrs-include="lustre.*"
7872 }
7873
7874 test_102d() {
7875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7876         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7877         XINC=$(have_xattrs_include)
7878         setup_test102
7879         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7880         cd $DIR/$tdir/$tdir
7881         compare_stripe_info1
7882 }
7883 run_test 102d "tar restore stripe info from tarfile,not keep osts"
7884
7885 test_102f() {
7886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7887         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7888         XINC=$(have_xattrs_include)
7889         setup_test102
7890         test_mkdir $DIR/$tdir.restore
7891         cd $DIR
7892         tar cf - --xattrs $tdir | tar xf - \
7893                 -C $DIR/$tdir.restore --xattrs $XINC
7894         cd $DIR/$tdir.restore/$tdir
7895         compare_stripe_info1
7896 }
7897 run_test 102f "tar copy files, not keep osts"
7898
7899 grow_xattr() {
7900         local xsize=${1:-1024}  # in bytes
7901         local file=$DIR/$tfile
7902
7903         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7904                 skip "must have user_xattr" && return 0
7905         [ -z "$(which setfattr 2>/dev/null)" ] &&
7906                 skip_env "could not find setfattr" && return 0
7907         [ -z "$(which getfattr 2>/dev/null)" ] &&
7908                 skip_env "could not find getfattr" && return 0
7909
7910         touch $file
7911
7912         local value="$(generate_string $xsize)"
7913
7914         local xbig=trusted.big
7915         log "save $xbig on $file"
7916         setfattr -n $xbig -v $value $file ||
7917                 error "saving $xbig on $file failed"
7918
7919         local orig=$(get_xattr_value $xbig $file)
7920         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7921
7922         local xsml=trusted.sml
7923         log "save $xsml on $file"
7924         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7925
7926         local new=$(get_xattr_value $xbig $file)
7927         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7928
7929         log "grow $xsml on $file"
7930         setfattr -n $xsml -v "$value" $file ||
7931                 error "growing $xsml on $file failed"
7932
7933         new=$(get_xattr_value $xbig $file)
7934         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7935         log "$xbig still valid after growing $xsml"
7936
7937         rm -f $file
7938 }
7939
7940 test_102h() { # bug 15777
7941         grow_xattr 1024
7942 }
7943 run_test 102h "grow xattr from inside inode to external block"
7944
7945 test_102ha() {
7946         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7947         grow_xattr $(max_xattr_size)
7948 }
7949 run_test 102ha "grow xattr from inside inode to external inode"
7950
7951 test_102i() { # bug 17038
7952         [ -z "$(which getfattr 2>/dev/null)" ] &&
7953                 skip "could not find getfattr" && return
7954         touch $DIR/$tfile
7955         ln -s $DIR/$tfile $DIR/${tfile}link
7956         getfattr -n trusted.lov $DIR/$tfile ||
7957                 error "lgetxattr on $DIR/$tfile failed"
7958         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7959                 grep -i "no such attr" ||
7960                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7961         rm -f $DIR/$tfile $DIR/${tfile}link
7962 }
7963 run_test 102i "lgetxattr test on symbolic link ============"
7964
7965 test_102j() {
7966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7967         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7968         XINC=$(have_xattrs_include)
7969         setup_test102 "$RUNAS"
7970         chown $RUNAS_ID $DIR/$tdir
7971         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7972         cd $DIR/$tdir/$tdir
7973         compare_stripe_info1 "$RUNAS"
7974 }
7975 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7976
7977 test_102k() {
7978         [ -z "$(which setfattr 2>/dev/null)" ] &&
7979                 skip "could not find setfattr" && return
7980         touch $DIR/$tfile
7981         # b22187 just check that does not crash for regular file.
7982         setfattr -n trusted.lov $DIR/$tfile
7983         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
7984         local test_kdir=$DIR/$tdir
7985         test_mkdir $test_kdir
7986         local default_size=$($LFS getstripe -S $test_kdir)
7987         local default_count=$($LFS getstripe -c $test_kdir)
7988         local default_offset=$($LFS getstripe -i $test_kdir)
7989         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7990                 error 'dir setstripe failed'
7991         setfattr -n trusted.lov $test_kdir
7992         local stripe_size=$($LFS getstripe -S $test_kdir)
7993         local stripe_count=$($LFS getstripe -c $test_kdir)
7994         local stripe_offset=$($LFS getstripe -i $test_kdir)
7995         [ $stripe_size -eq $default_size ] ||
7996                 error "stripe size $stripe_size != $default_size"
7997         [ $stripe_count -eq $default_count ] ||
7998                 error "stripe count $stripe_count != $default_count"
7999         [ $stripe_offset -eq $default_offset ] ||
8000                 error "stripe offset $stripe_offset != $default_offset"
8001         rm -rf $DIR/$tfile $test_kdir
8002 }
8003 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8004
8005 test_102l() {
8006         [ -z "$(which getfattr 2>/dev/null)" ] &&
8007                 skip "could not find getfattr" && return
8008
8009         # LU-532 trusted. xattr is invisible to non-root
8010         local testfile=$DIR/$tfile
8011
8012         touch $testfile
8013
8014         echo "listxattr as user..."
8015         chown $RUNAS_ID $testfile
8016         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8017             grep -q "trusted" &&
8018                 error "$testfile trusted xattrs are user visible"
8019
8020         return 0;
8021 }
8022 run_test 102l "listxattr size test =================================="
8023
8024 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8025         local path=$DIR/$tfile
8026         touch $path
8027
8028         listxattr_size_check $path || error "listattr_size_check $path failed"
8029 }
8030 run_test 102m "Ensure listxattr fails on small bufffer ========"
8031
8032 cleanup_test102
8033
8034 getxattr() { # getxattr path name
8035         # Return the base64 encoding of the value of xattr name on path.
8036         local path=$1
8037         local name=$2
8038
8039         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8040         # file: $path
8041         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8042         #
8043         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8044
8045         getfattr --absolute-names --encoding=base64 --name=$name $path |
8046                 awk -F= -v name=$name '$1 == name {
8047                         print substr($0, index($0, "=") + 1);
8048         }'
8049 }
8050
8051 test_102n() { # LU-4101 mdt: protect internal xattrs
8052         [ -z "$(which setfattr 2>/dev/null)" ] &&
8053                 skip "could not find setfattr" && return
8054         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8055         then
8056                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8057                 return
8058         fi
8059
8060         local file0=$DIR/$tfile.0
8061         local file1=$DIR/$tfile.1
8062         local xattr0=$TMP/$tfile.0
8063         local xattr1=$TMP/$tfile.1
8064         local namelist="lov lma lmv link fid version som hsm"
8065         local name
8066         local value
8067
8068         rm -rf $file0 $file1 $xattr0 $xattr1
8069         touch $file0 $file1
8070
8071         # Get 'before' xattrs of $file1.
8072         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8073
8074         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8075                 namelist+=" lfsck_namespace"
8076         for name in $namelist; do
8077                 # Try to copy xattr from $file0 to $file1.
8078                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8079
8080                 setfattr --name=trusted.$name --value="$value" $file1 ||
8081                         error "setxattr 'trusted.$name' failed"
8082
8083                 # Try to set a garbage xattr.
8084                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8085
8086                 if [[ x$name == "xlov" ]]; then
8087                         setfattr --name=trusted.lov --value="$value" $file1 &&
8088                         error "setxattr invalid 'trusted.lov' success"
8089                 else
8090                         setfattr --name=trusted.$name --value="$value" $file1 ||
8091                                 error "setxattr invalid 'trusted.$name' failed"
8092                 fi
8093
8094                 # Try to remove the xattr from $file1. We don't care if this
8095                 # appears to succeed or fail, we just don't want there to be
8096                 # any changes or crashes.
8097                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8098         done
8099
8100         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8101         then
8102                 name="lfsck_ns"
8103                 # Try to copy xattr from $file0 to $file1.
8104                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8105
8106                 setfattr --name=trusted.$name --value="$value" $file1 ||
8107                         error "setxattr 'trusted.$name' failed"
8108
8109                 # Try to set a garbage xattr.
8110                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8111
8112                 setfattr --name=trusted.$name --value="$value" $file1 ||
8113                         error "setxattr 'trusted.$name' failed"
8114
8115                 # Try to remove the xattr from $file1. We don't care if this
8116                 # appears to succeed or fail, we just don't want there to be
8117                 # any changes or crashes.
8118                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8119         fi
8120
8121         # Get 'after' xattrs of file1.
8122         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8123
8124         if ! diff $xattr0 $xattr1; then
8125                 error "before and after xattrs of '$file1' differ"
8126         fi
8127
8128         rm -rf $file0 $file1 $xattr0 $xattr1
8129
8130         return 0
8131 }
8132 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8133
8134 test_102p() { # LU-4703 setxattr did not check ownership
8135         local testfile=$DIR/$tfile
8136
8137         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8138                 skip "MDS needs to be at least 2.5.56" && return
8139
8140         touch $testfile
8141
8142         echo "setfacl as user..."
8143         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8144         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8145
8146         echo "setfattr as user..."
8147         setfacl -m "u:$RUNAS_ID:---" $testfile
8148         $RUNAS setfattr -x system.posix_acl_access $testfile
8149         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8150 }
8151 run_test 102p "check setxattr(2) correctly fails without permission"
8152
8153 test_102q() {
8154         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8155                 skip "MDS needs to be at least 2.6.92" && return
8156         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8157 }
8158 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8159
8160 test_102r() {
8161         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8162                 skip "MDS needs to be at least 2.6.93" && return
8163         touch $DIR/$tfile || error "touch"
8164         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8165         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8166         rm $DIR/$tfile || error "rm"
8167
8168         #normal directory
8169         mkdir -p $DIR/$tdir || error "mkdir"
8170         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8171         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8172         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8173                 error "$testfile error deleting user.author1"
8174         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8175                 grep "user.$(basename $tdir)" &&
8176                 error "$tdir did not delete user.$(basename $tdir)"
8177         rmdir $DIR/$tdir || error "rmdir"
8178
8179         #striped directory
8180         test_mkdir $DIR/$tdir
8181         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8182         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8183         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8184                 error "$testfile error deleting user.author1"
8185         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8186                 grep "user.$(basename $tdir)" &&
8187                 error "$tdir did not delete user.$(basename $tdir)"
8188         rmdir $DIR/$tdir || error "rm striped dir"
8189 }
8190 run_test 102r "set EAs with empty values"
8191
8192 run_acl_subtest()
8193 {
8194     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8195     return $?
8196 }
8197
8198 test_103a() {
8199         [ "$UID" != 0 ] && skip_env "must run as root" && return
8200         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8201                 skip "must have acl enabled" && return
8202         [ -z "$(which setfacl 2>/dev/null)" ] &&
8203                 skip_env "could not find setfacl" && return
8204         $GSS && skip "could not run under gss" && return
8205         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8206
8207         gpasswd -a daemon bin                           # LU-5641
8208         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8209
8210         declare -a identity_old
8211
8212         for num in $(seq $MDSCOUNT); do
8213                 switch_identity $num true || identity_old[$num]=$?
8214         done
8215
8216         SAVE_UMASK=$(umask)
8217         umask 0022
8218         mkdir -p $DIR/$tdir
8219         cd $DIR/$tdir
8220
8221         echo "performing cp ..."
8222         run_acl_subtest cp || error "run_acl_subtest cp failed"
8223         echo "performing getfacl-noacl..."
8224         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8225         echo "performing misc..."
8226         run_acl_subtest misc || error  "misc test failed"
8227         echo "performing permissions..."
8228         run_acl_subtest permissions || error "permissions failed"
8229         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8230         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8231              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8232              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8233         then
8234                 echo "performing permissions xattr..."
8235                 run_acl_subtest permissions_xattr ||
8236                         error "permissions_xattr failed"
8237         fi
8238         echo "performing setfacl..."
8239         run_acl_subtest setfacl || error  "setfacl test failed"
8240
8241         # inheritance test got from HP
8242         echo "performing inheritance..."
8243         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8244         chmod +x make-tree || error "chmod +x failed"
8245         run_acl_subtest inheritance || error "inheritance test failed"
8246         rm -f make-tree
8247
8248         echo "LU-974 ignore umask when acl is enabled..."
8249         run_acl_subtest 974 || error "LU-974 umask test failed"
8250         if [ $MDSCOUNT -ge 2 ]; then
8251                 run_acl_subtest 974_remote ||
8252                         error "LU-974 umask test failed under remote dir"
8253         fi
8254
8255         echo "LU-2561 newly created file is same size as directory..."
8256         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8257                 run_acl_subtest 2561 || error "LU-2561 test failed"
8258         else
8259                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8260         fi
8261
8262         run_acl_subtest 4924 || error "LU-4924 test failed"
8263
8264         cd $SAVE_PWD
8265         umask $SAVE_UMASK
8266
8267         for num in $(seq $MDSCOUNT); do
8268                 if [ "${identity_old[$num]}" = 1 ]; then
8269                         switch_identity $num false || identity_old[$num]=$?
8270                 fi
8271         done
8272 }
8273 run_test 103a "acl test ========================================="
8274
8275 test_103c() {
8276         mkdir -p $DIR/$tdir
8277         cp -rp $DIR/$tdir $DIR/$tdir.bak
8278
8279         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8280                 error "$DIR/$tdir shouldn't contain default ACL"
8281         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8282                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8283         true
8284 }
8285 run_test 103c "'cp -rp' won't set empty acl"
8286
8287 test_104a() {
8288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8289         touch $DIR/$tfile
8290         lfs df || error "lfs df failed"
8291         lfs df -ih || error "lfs df -ih failed"
8292         lfs df -h $DIR || error "lfs df -h $DIR failed"
8293         lfs df -i $DIR || error "lfs df -i $DIR failed"
8294         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8295         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8296
8297         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8298         lctl --device %$OSC deactivate
8299         lfs df || error "lfs df with deactivated OSC failed"
8300         lctl --device %$OSC activate
8301         # wait the osc back to normal
8302         wait_osc_import_state client ost FULL
8303
8304         lfs df || error "lfs df with reactivated OSC failed"
8305         rm -f $DIR/$tfile
8306 }
8307 run_test 104a "lfs df [-ih] [path] test ========================="
8308
8309 test_104b() {
8310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8311         [ $RUNAS_ID -eq $UID ] &&
8312                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
8313         chmod 666 /dev/obd
8314         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8315                         grep "Permission denied" | wc -l)))
8316         if [ $denied_cnt -ne 0 ]; then
8317                 error "lfs check servers test failed"
8318         fi
8319 }
8320 run_test 104b "$RUNAS lfs check servers test ===================="
8321
8322 test_105a() {
8323         # doesn't work on 2.4 kernels
8324         touch $DIR/$tfile
8325         if $(flock_is_enabled); then
8326                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8327         else
8328                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8329         fi
8330         rm -f $DIR/$tfile
8331 }
8332 run_test 105a "flock when mounted without -o flock test ========"
8333
8334 test_105b() {
8335         touch $DIR/$tfile
8336         if $(flock_is_enabled); then
8337                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8338         else
8339                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8340         fi
8341         rm -f $DIR/$tfile
8342 }
8343 run_test 105b "fcntl when mounted without -o flock test ========"
8344
8345 test_105c() {
8346         touch $DIR/$tfile
8347         if $(flock_is_enabled); then
8348                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8349         else
8350                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8351         fi
8352         rm -f $DIR/$tfile
8353 }
8354 run_test 105c "lockf when mounted without -o flock test"
8355
8356 test_105d() { # bug 15924
8357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8358         test_mkdir $DIR/$tdir
8359         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
8360         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8361         $LCTL set_param fail_loc=0x80000315
8362         flocks_test 2 $DIR/$tdir
8363 }
8364 run_test 105d "flock race (should not freeze) ========"
8365
8366 test_105e() { # bug 22660 && 22040
8367         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
8368         touch $DIR/$tfile
8369         flocks_test 3 $DIR/$tfile
8370 }
8371 run_test 105e "Two conflicting flocks from same process"
8372
8373 test_106() { #bug 10921
8374         test_mkdir $DIR/$tdir
8375         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8376         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8377 }
8378 run_test 106 "attempt exec of dir followed by chown of that dir"
8379
8380 test_107() {
8381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8382         CDIR=`pwd`
8383         cd $DIR
8384
8385         local file=core
8386         rm -f $file
8387
8388         local save_pattern=$(sysctl -n kernel.core_pattern)
8389         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8390         sysctl -w kernel.core_pattern=$file
8391         sysctl -w kernel.core_uses_pid=0
8392
8393         ulimit -c unlimited
8394         sleep 60 &
8395         SLEEPPID=$!
8396
8397         sleep 1
8398
8399         kill -s 11 $SLEEPPID
8400         wait $SLEEPPID
8401         if [ -e $file ]; then
8402                 size=`stat -c%s $file`
8403                 [ $size -eq 0 ] && error "Fail to create core file $file"
8404         else
8405                 error "Fail to create core file $file"
8406         fi
8407         rm -f $file
8408         sysctl -w kernel.core_pattern=$save_pattern
8409         sysctl -w kernel.core_uses_pid=$save_uses_pid
8410         cd $CDIR
8411 }
8412 run_test 107 "Coredump on SIG"
8413
8414 test_110() {
8415         test_mkdir $DIR/$tdir
8416         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8417         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8418                 error "mkdir with 256 char should fail, but did not"
8419         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8420                 error "create with 255 char failed"
8421         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8422                 error "create with 256 char should fail, but did not"
8423
8424         ls -l $DIR/$tdir
8425         rm -rf $DIR/$tdir
8426 }
8427 run_test 110 "filename length checking"
8428
8429 #
8430 # Purpose: To verify dynamic thread (OSS) creation.
8431 #
8432 test_115() {
8433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8434         remote_ost_nodsh && skip "remote OST with nodsh" && return
8435
8436         # Lustre does not stop service threads once they are started.
8437         # Reset number of running threads to default.
8438         stopall
8439         setupall
8440
8441         local OSTIO_pre
8442         local save_params="$TMP/sanity-$TESTNAME.parameters"
8443
8444         # Get ll_ost_io count before I/O
8445         OSTIO_pre=$(do_facet ost1 \
8446                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8447         # Exit if lustre is not running (ll_ost_io not running).
8448         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8449
8450         echo "Starting with $OSTIO_pre threads"
8451         local thread_max=$((OSTIO_pre * 2))
8452         local rpc_in_flight=$((thread_max * 2))
8453         # Number of I/O Process proposed to be started.
8454         local nfiles
8455         local facets=$(get_facets OST)
8456
8457         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8458         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8459
8460         # Set in_flight to $rpc_in_flight
8461         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8462                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8463         nfiles=${rpc_in_flight}
8464         # Set ost thread_max to $thread_max
8465         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8466
8467         # 5 Minutes should be sufficient for max number of OSS
8468         # threads(thread_max) to be created.
8469         local timeout=300
8470
8471         # Start I/O.
8472         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8473         test_mkdir $DIR/$tdir
8474         for i in $(seq $nfiles); do
8475                 local file=$DIR/$tdir/${tfile}-$i
8476                 $LFS setstripe -c -1 -i 0 $file
8477                 ($WTL $file $timeout)&
8478         done
8479
8480         # I/O Started - Wait for thread_started to reach thread_max or report
8481         # error if thread_started is more than thread_max.
8482         echo "Waiting for thread_started to reach thread_max"
8483         local thread_started=0
8484         local end_time=$((SECONDS + timeout))
8485
8486         while [ $SECONDS -le $end_time ] ; do
8487                 echo -n "."
8488                 # Get ost i/o thread_started count.
8489                 thread_started=$(do_facet ost1 \
8490                         "$LCTL get_param \
8491                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8492                 # Break out if thread_started is equal/greater than thread_max
8493                 if [[ $thread_started -ge $thread_max ]]; then
8494                         echo ll_ost_io thread_started $thread_started, \
8495                                 equal/greater than thread_max $thread_max
8496                         break
8497                 fi
8498                 sleep 1
8499         done
8500
8501         # Cleanup - We have the numbers, Kill i/o jobs if running.
8502         jobcount=($(jobs -p))
8503         for i in $(seq 0 $((${#jobcount[@]}-1)))
8504         do
8505                 kill -9 ${jobcount[$i]}
8506                 if [ $? -ne 0 ] ; then
8507                         echo Warning: \
8508                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8509                 fi
8510         done
8511
8512         # Cleanup files left by WTL binary.
8513         for i in $(seq $nfiles); do
8514                 local file=$DIR/$tdir/${tfile}-$i
8515                 rm -rf $file
8516                 if [ $? -ne 0 ] ; then
8517                         echo "Warning: Failed to delete file $file"
8518                 fi
8519         done
8520
8521         restore_lustre_params <$save_params
8522         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8523
8524         # Error out if no new thread has started or Thread started is greater
8525         # than thread max.
8526         if [[ $thread_started -le $OSTIO_pre ||
8527                         $thread_started -gt $thread_max ]]; then
8528                 error "ll_ost_io: thread_started $thread_started" \
8529                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8530                       "No new thread started or thread started greater " \
8531                       "than thread_max."
8532         fi
8533 }
8534 run_test 115 "verify dynamic thread creation===================="
8535
8536 free_min_max () {
8537         wait_delete_completed
8538         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8539         echo "OST kbytes available: ${AVAIL[@]}"
8540         MAXV=${AVAIL[0]}
8541         MAXI=0
8542         MINV=${AVAIL[0]}
8543         MINI=0
8544         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8545                 #echo OST $i: ${AVAIL[i]}kb
8546                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8547                         MAXV=${AVAIL[i]}
8548                         MAXI=$i
8549                 fi
8550                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8551                         MINV=${AVAIL[i]}
8552                         MINI=$i
8553                 fi
8554         done
8555         echo "Min free space: OST $MINI: $MINV"
8556         echo "Max free space: OST $MAXI: $MAXV"
8557 }
8558
8559 test_116a() { # was previously test_116()
8560         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8561         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8562
8563         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8564
8565         echo -n "Free space priority "
8566         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8567                 head -n1
8568         declare -a AVAIL
8569         free_min_max
8570
8571         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
8572         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
8573                 && return
8574         trap simple_cleanup_common EXIT
8575
8576
8577         # Check if we need to generate uneven OSTs
8578         test_mkdir -p $DIR/$tdir/OST${MINI}
8579         local FILL=$((MINV / 4))
8580         local DIFF=$((MAXV - MINV))
8581         local DIFF2=$((DIFF * 100 / MINV))
8582
8583         local threshold=$(do_facet $SINGLEMDS \
8584                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8585         threshold=${threshold%%%}
8586         echo -n "Check for uneven OSTs: "
8587         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8588
8589         if [[ $DIFF2 -gt $threshold ]]; then
8590                 echo "ok"
8591                 echo "Don't need to fill OST$MINI"
8592         else
8593                 # generate uneven OSTs. Write 2% over the QOS threshold value
8594                 echo "no"
8595                 DIFF=$((threshold - DIFF2 + 2))
8596                 DIFF2=$((MINV * DIFF / 100))
8597                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8598                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8599                         error "setstripe failed"
8600                 DIFF=$((DIFF2 / 2048))
8601                 i=0
8602                 while [ $i -lt $DIFF ]; do
8603                         i=$((i + 1))
8604                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8605                                 bs=2M count=1 2>/dev/null
8606                         echo -n .
8607                 done
8608                 echo .
8609                 sync
8610                 sleep_maxage
8611                 free_min_max
8612         fi
8613
8614         DIFF=$((MAXV - MINV))
8615         DIFF2=$((DIFF * 100 / MINV))
8616         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8617         if [ $DIFF2 -gt $threshold ]; then
8618                 echo "ok"
8619         else
8620                 echo "failed - QOS mode won't be used"
8621                 skip "QOS imbalance criteria not met"
8622                 simple_cleanup_common
8623                 return
8624         fi
8625
8626         MINI1=$MINI
8627         MINV1=$MINV
8628         MAXI1=$MAXI
8629         MAXV1=$MAXV
8630
8631         # now fill using QOS
8632         $SETSTRIPE -c 1 $DIR/$tdir
8633         FILL=$((FILL / 200))
8634         if [ $FILL -gt 600 ]; then
8635                 FILL=600
8636         fi
8637         echo "writing $FILL files to QOS-assigned OSTs"
8638         i=0
8639         while [ $i -lt $FILL ]; do
8640                 i=$((i + 1))
8641                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8642                         count=1 2>/dev/null
8643                 echo -n .
8644         done
8645         echo "wrote $i 200k files"
8646         sync
8647         sleep_maxage
8648
8649         echo "Note: free space may not be updated, so measurements might be off"
8650         free_min_max
8651         DIFF2=$((MAXV - MINV))
8652         echo "free space delta: orig $DIFF final $DIFF2"
8653         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8654         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8655         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8656         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8657         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8658         if [[ $DIFF -gt 0 ]]; then
8659                 FILL=$((DIFF2 * 100 / DIFF - 100))
8660                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8661         fi
8662
8663         # Figure out which files were written where
8664         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8665                awk '/'$MINI1': / {print $2; exit}')
8666         echo $UUID
8667         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8668         echo "$MINC files created on smaller OST $MINI1"
8669         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8670                awk '/'$MAXI1': / {print $2; exit}')
8671         echo $UUID
8672         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8673         echo "$MAXC files created on larger OST $MAXI1"
8674         if [[ $MINC -gt 0 ]]; then
8675                 FILL=$((MAXC * 100 / MINC - 100))
8676                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8677         fi
8678         [[ $MAXC -gt $MINC ]] ||
8679                 error_ignore LU-9 "stripe QOS didn't balance free space"
8680         simple_cleanup_common
8681 }
8682 run_test 116a "stripe QOS: free space balance ==================="
8683
8684 test_116b() { # LU-2093
8685         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8686         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8687
8688 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8689         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8690                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8691         [ -z "$old_rr" ] && skip "no QOS" && return 0
8692         do_facet $SINGLEMDS lctl set_param \
8693                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8694         mkdir -p $DIR/$tdir
8695         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8696         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8697         do_facet $SINGLEMDS lctl set_param fail_loc=0
8698         rm -rf $DIR/$tdir
8699         do_facet $SINGLEMDS lctl set_param \
8700                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8701 }
8702 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8703
8704 test_117() # bug 10891
8705 {
8706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8707         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8708         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8709         lctl set_param fail_loc=0x21e
8710         > $DIR/$tfile || error "truncate failed"
8711         lctl set_param fail_loc=0
8712         echo "Truncate succeeded."
8713         rm -f $DIR/$tfile
8714 }
8715 run_test 117 "verify osd extend =========="
8716
8717 NO_SLOW_RESENDCOUNT=4
8718 export OLD_RESENDCOUNT=""
8719 set_resend_count () {
8720         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8721         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8722         lctl set_param -n $PROC_RESENDCOUNT $1
8723         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8724 }
8725
8726 # for reduce test_118* time (b=14842)
8727 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8728
8729 # Reset async IO behavior after error case
8730 reset_async() {
8731         FILE=$DIR/reset_async
8732
8733         # Ensure all OSCs are cleared
8734         $SETSTRIPE -c -1 $FILE
8735         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8736         sync
8737         rm $FILE
8738 }
8739
8740 test_118a() #bug 11710
8741 {
8742         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8743         reset_async
8744
8745         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8746         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8747         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8748
8749         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8750                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8751                 return 1;
8752         fi
8753         rm -f $DIR/$tfile
8754 }
8755 run_test 118a "verify O_SYNC works =========="
8756
8757 test_118b()
8758 {
8759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8760         remote_ost_nodsh && skip "remote OST with nodsh" && return
8761
8762         reset_async
8763
8764         #define OBD_FAIL_SRV_ENOENT 0x217
8765         set_nodes_failloc "$(osts_nodes)" 0x217
8766         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8767         RC=$?
8768         set_nodes_failloc "$(osts_nodes)" 0
8769         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8770         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8771                     grep -c writeback)
8772
8773         if [[ $RC -eq 0 ]]; then
8774                 error "Must return error due to dropped pages, rc=$RC"
8775                 return 1;
8776         fi
8777
8778         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8779                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8780                 return 1;
8781         fi
8782
8783         echo "Dirty pages not leaked on ENOENT"
8784
8785         # Due to the above error the OSC will issue all RPCs syncronously
8786         # until a subsequent RPC completes successfully without error.
8787         $MULTIOP $DIR/$tfile Ow4096yc
8788         rm -f $DIR/$tfile
8789
8790         return 0
8791 }
8792 run_test 118b "Reclaim dirty pages on fatal error =========="
8793
8794 test_118c()
8795 {
8796         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8797
8798         # for 118c, restore the original resend count, LU-1940
8799         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8800                                 set_resend_count $OLD_RESENDCOUNT
8801         remote_ost_nodsh && skip "remote OST with nodsh" && return
8802
8803         reset_async
8804
8805         #define OBD_FAIL_OST_EROFS               0x216
8806         set_nodes_failloc "$(osts_nodes)" 0x216
8807
8808         # multiop should block due to fsync until pages are written
8809         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8810         MULTIPID=$!
8811         sleep 1
8812
8813         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8814                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8815         fi
8816
8817         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8818                     grep -c writeback)
8819         if [[ $WRITEBACK -eq 0 ]]; then
8820                 error "No page in writeback, writeback=$WRITEBACK"
8821         fi
8822
8823         set_nodes_failloc "$(osts_nodes)" 0
8824         wait $MULTIPID
8825         RC=$?
8826         if [[ $RC -ne 0 ]]; then
8827                 error "Multiop fsync failed, rc=$RC"
8828         fi
8829
8830         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8831         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8832                     grep -c writeback)
8833         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8834                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8835         fi
8836
8837         rm -f $DIR/$tfile
8838         echo "Dirty pages flushed via fsync on EROFS"
8839         return 0
8840 }
8841 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8842
8843 # continue to use small resend count to reduce test_118* time (b=14842)
8844 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8845
8846 test_118d()
8847 {
8848         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8849         remote_ost_nodsh && skip "remote OST with nodsh" && return
8850
8851         reset_async
8852
8853         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8854         set_nodes_failloc "$(osts_nodes)" 0x214
8855         # multiop should block due to fsync until pages are written
8856         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8857         MULTIPID=$!
8858         sleep 1
8859
8860         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8861                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8862         fi
8863
8864         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8865                     grep -c writeback)
8866         if [[ $WRITEBACK -eq 0 ]]; then
8867                 error "No page in writeback, writeback=$WRITEBACK"
8868         fi
8869
8870         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8871         set_nodes_failloc "$(osts_nodes)" 0
8872
8873         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8874         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8875                     grep -c writeback)
8876         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8877                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8878         fi
8879
8880         rm -f $DIR/$tfile
8881         echo "Dirty pages gaurenteed flushed via fsync"
8882         return 0
8883 }
8884 run_test 118d "Fsync validation inject a delay of the bulk =========="
8885
8886 test_118f() {
8887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8888         reset_async
8889
8890         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8891         lctl set_param fail_loc=0x8000040a
8892
8893         # Should simulate EINVAL error which is fatal
8894         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8895         RC=$?
8896         if [[ $RC -eq 0 ]]; then
8897                 error "Must return error due to dropped pages, rc=$RC"
8898         fi
8899
8900         lctl set_param fail_loc=0x0
8901
8902         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8903         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8904         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8905                     grep -c writeback)
8906         if [[ $LOCKED -ne 0 ]]; then
8907                 error "Locked pages remain in cache, locked=$LOCKED"
8908         fi
8909
8910         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8911                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8912         fi
8913
8914         rm -f $DIR/$tfile
8915         echo "No pages locked after fsync"
8916
8917         reset_async
8918         return 0
8919 }
8920 run_test 118f "Simulate unrecoverable OSC side error =========="
8921
8922 test_118g() {
8923         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8924         reset_async
8925
8926         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8927         lctl set_param fail_loc=0x406
8928
8929         # simulate local -ENOMEM
8930         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8931         RC=$?
8932
8933         lctl set_param fail_loc=0
8934         if [[ $RC -eq 0 ]]; then
8935                 error "Must return error due to dropped pages, rc=$RC"
8936         fi
8937
8938         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8939         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8940         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8941                         grep -c writeback)
8942         if [[ $LOCKED -ne 0 ]]; then
8943                 error "Locked pages remain in cache, locked=$LOCKED"
8944         fi
8945
8946         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8947                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8948         fi
8949
8950         rm -f $DIR/$tfile
8951         echo "No pages locked after fsync"
8952
8953         reset_async
8954         return 0
8955 }
8956 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8957
8958 test_118h() {
8959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8960         remote_ost_nodsh && skip "remote OST with nodsh" && return
8961
8962         reset_async
8963
8964         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8965         set_nodes_failloc "$(osts_nodes)" 0x20e
8966         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8967         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8968         RC=$?
8969
8970         set_nodes_failloc "$(osts_nodes)" 0
8971         if [[ $RC -eq 0 ]]; then
8972                 error "Must return error due to dropped pages, rc=$RC"
8973         fi
8974
8975         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8976         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8977         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8978                     grep -c writeback)
8979         if [[ $LOCKED -ne 0 ]]; then
8980                 error "Locked pages remain in cache, locked=$LOCKED"
8981         fi
8982
8983         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8984                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8985         fi
8986
8987         rm -f $DIR/$tfile
8988         echo "No pages locked after fsync"
8989
8990         return 0
8991 }
8992 run_test 118h "Verify timeout in handling recoverables errors  =========="
8993
8994 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8995
8996 test_118i() {
8997         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8998         remote_ost_nodsh && skip "remote OST with nodsh" && return
8999
9000         reset_async
9001
9002         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9003         set_nodes_failloc "$(osts_nodes)" 0x20e
9004
9005         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9006         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9007         PID=$!
9008         sleep 5
9009         set_nodes_failloc "$(osts_nodes)" 0
9010
9011         wait $PID
9012         RC=$?
9013         if [[ $RC -ne 0 ]]; then
9014                 error "got error, but should be not, rc=$RC"
9015         fi
9016
9017         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9018         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9019         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9020         if [[ $LOCKED -ne 0 ]]; then
9021                 error "Locked pages remain in cache, locked=$LOCKED"
9022         fi
9023
9024         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9025                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9026         fi
9027
9028         rm -f $DIR/$tfile
9029         echo "No pages locked after fsync"
9030
9031         return 0
9032 }
9033 run_test 118i "Fix error before timeout in recoverable error  =========="
9034
9035 [ "$SLOW" = "no" ] && set_resend_count 4
9036
9037 test_118j() {
9038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9039         remote_ost_nodsh && skip "remote OST with nodsh" && return
9040
9041         reset_async
9042
9043         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9044         set_nodes_failloc "$(osts_nodes)" 0x220
9045
9046         # return -EIO from OST
9047         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9048         RC=$?
9049         set_nodes_failloc "$(osts_nodes)" 0x0
9050         if [[ $RC -eq 0 ]]; then
9051                 error "Must return error due to dropped pages, rc=$RC"
9052         fi
9053
9054         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9055         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9056         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9057         if [[ $LOCKED -ne 0 ]]; then
9058                 error "Locked pages remain in cache, locked=$LOCKED"
9059         fi
9060
9061         # in recoverable error on OST we want resend and stay until it finished
9062         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9063                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9064         fi
9065
9066         rm -f $DIR/$tfile
9067         echo "No pages locked after fsync"
9068
9069         return 0
9070 }
9071 run_test 118j "Simulate unrecoverable OST side error =========="
9072
9073 test_118k()
9074 {
9075         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9076         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
9077
9078         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9079         set_nodes_failloc "$(osts_nodes)" 0x20e
9080         test_mkdir $DIR/$tdir
9081
9082         for ((i=0;i<10;i++)); do
9083                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9084                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9085                 SLEEPPID=$!
9086                 sleep 0.500s
9087                 kill $SLEEPPID
9088                 wait $SLEEPPID
9089         done
9090
9091         set_nodes_failloc "$(osts_nodes)" 0
9092         rm -rf $DIR/$tdir
9093 }
9094 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9095
9096 test_118l()
9097 {
9098         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9099         # LU-646
9100         test_mkdir $DIR/$tdir
9101         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9102         rm -rf $DIR/$tdir
9103 }
9104 run_test 118l "fsync dir"
9105
9106 test_118m() # LU-3066
9107 {
9108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9109         test_mkdir $DIR/$tdir
9110         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9111         rm -rf $DIR/$tdir
9112 }
9113 run_test 118m "fdatasync dir ========="
9114
9115 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9116
9117 test_118n()
9118 {
9119         local begin
9120         local end
9121
9122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9123         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
9124
9125         # Sleep to avoid a cached response.
9126         #define OBD_STATFS_CACHE_SECONDS 1
9127         sleep 2
9128
9129         # Inject a 10 second delay in the OST_STATFS handler.
9130         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9131         set_nodes_failloc "$(osts_nodes)" 0x242
9132
9133         begin=$SECONDS
9134         stat --file-system $MOUNT > /dev/null
9135         end=$SECONDS
9136
9137         set_nodes_failloc "$(osts_nodes)" 0
9138
9139         if ((end - begin > 20)); then
9140             error "statfs took $((end - begin)) seconds, expected 10"
9141         fi
9142 }
9143 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9144
9145 test_119a() # bug 11737
9146 {
9147         BSIZE=$((512 * 1024))
9148         directio write $DIR/$tfile 0 1 $BSIZE
9149         # We ask to read two blocks, which is more than a file size.
9150         # directio will indicate an error when requested and actual
9151         # sizes aren't equeal (a normal situation in this case) and
9152         # print actual read amount.
9153         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9154         if [ "$NOB" != "$BSIZE" ]; then
9155                 error "read $NOB bytes instead of $BSIZE"
9156         fi
9157         rm -f $DIR/$tfile
9158 }
9159 run_test 119a "Short directIO read must return actual read amount"
9160
9161 test_119b() # bug 11737
9162 {
9163         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9164
9165         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9166         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9167         sync
9168         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
9169                 error "direct read failed"
9170         rm -f $DIR/$tfile
9171 }
9172 run_test 119b "Sparse directIO read must return actual read amount"
9173
9174 test_119c() # bug 13099
9175 {
9176         BSIZE=1048576
9177         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9178         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9179         rm -f $DIR/$tfile
9180 }
9181 run_test 119c "Testing for direct read hitting hole"
9182
9183 test_119d() # bug 15950
9184 {
9185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9186         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9187         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9188         BSIZE=1048576
9189         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9190         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9191         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9192         lctl set_param fail_loc=0x40d
9193         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9194         pid_dio=$!
9195         sleep 1
9196         cat $DIR/$tfile > /dev/null &
9197         lctl set_param fail_loc=0
9198         pid_reads=$!
9199         wait $pid_dio
9200         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9201         sleep 2
9202         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9203         error "the read rpcs have not completed in 2s"
9204         rm -f $DIR/$tfile
9205         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9206 }
9207 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9208
9209 test_120a() {
9210         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9211         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9212         test_mkdir $DIR/$tdir
9213         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9214                 { skip "no early lock cancel on server"; return 0; }
9215
9216         lru_resize_disable mdc
9217         lru_resize_disable osc
9218         cancel_lru_locks mdc
9219         # asynchronous object destroy at MDT could cause bl ast to client
9220         cancel_lru_locks osc
9221
9222         stat $DIR/$tdir > /dev/null
9223         can1=$(do_facet $SINGLEMDS \
9224                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9225                awk '/ldlm_cancel/ {print $2}')
9226         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9227                awk '/ldlm_bl_callback/ {print $2}')
9228         test_mkdir -c1 $DIR/$tdir/d1
9229         can2=$(do_facet $SINGLEMDS \
9230                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9231                awk '/ldlm_cancel/ {print $2}')
9232         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9233                awk '/ldlm_bl_callback/ {print $2}')
9234         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9235         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9236         lru_resize_enable mdc
9237         lru_resize_enable osc
9238 }
9239 run_test 120a "Early Lock Cancel: mkdir test"
9240
9241 test_120b() {
9242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9243         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9244         test_mkdir $DIR/$tdir
9245         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9246                 { skip "no early lock cancel on server"; return 0; }
9247         lru_resize_disable mdc
9248         lru_resize_disable osc
9249         cancel_lru_locks mdc
9250         stat $DIR/$tdir > /dev/null
9251         can1=$(do_facet $SINGLEMDS \
9252                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9253                awk '/ldlm_cancel/ {print $2}')
9254         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9255                awk '/ldlm_bl_callback/ {print $2}')
9256         touch $DIR/$tdir/f1
9257         can2=$(do_facet $SINGLEMDS \
9258                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9259                awk '/ldlm_cancel/ {print $2}')
9260         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9261                awk '/ldlm_bl_callback/ {print $2}')
9262         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9263         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9264         lru_resize_enable mdc
9265         lru_resize_enable osc
9266 }
9267 run_test 120b "Early Lock Cancel: create test"
9268
9269 test_120c() {
9270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9271         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9272         test_mkdir -c1 $DIR/$tdir
9273         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9274                 { skip "no early lock cancel on server"; return 0; }
9275         lru_resize_disable mdc
9276         lru_resize_disable osc
9277         test_mkdir -c1 $DIR/$tdir/d1
9278         test_mkdir -c1 $DIR/$tdir/d2
9279         touch $DIR/$tdir/d1/f1
9280         cancel_lru_locks mdc
9281         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9282         can1=$(do_facet $SINGLEMDS \
9283                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9284                awk '/ldlm_cancel/ {print $2}')
9285         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9286                awk '/ldlm_bl_callback/ {print $2}')
9287         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9288         can2=$(do_facet $SINGLEMDS \
9289                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9290                awk '/ldlm_cancel/ {print $2}')
9291         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9292                awk '/ldlm_bl_callback/ {print $2}')
9293         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9294         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9295         lru_resize_enable mdc
9296         lru_resize_enable osc
9297 }
9298 run_test 120c "Early Lock Cancel: link test"
9299
9300 test_120d() {
9301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9302         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9303         test_mkdir -c1 $DIR/$tdir
9304         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9305                 { skip "no early lock cancel on server"; return 0; }
9306         lru_resize_disable mdc
9307         lru_resize_disable osc
9308         touch $DIR/$tdir
9309         cancel_lru_locks mdc
9310         stat $DIR/$tdir > /dev/null
9311         can1=$(do_facet $SINGLEMDS \
9312                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9313                awk '/ldlm_cancel/ {print $2}')
9314         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9315                awk '/ldlm_bl_callback/ {print $2}')
9316         chmod a+x $DIR/$tdir
9317         can2=$(do_facet $SINGLEMDS \
9318                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9319                awk '/ldlm_cancel/ {print $2}')
9320         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9321                awk '/ldlm_bl_callback/ {print $2}')
9322         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9323         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9324         lru_resize_enable mdc
9325         lru_resize_enable osc
9326 }
9327 run_test 120d "Early Lock Cancel: setattr test"
9328
9329 test_120e() {
9330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9331         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9332                 { skip "no early lock cancel on server"; return 0; }
9333         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9334         local dlmtrace_set=false
9335
9336         test_mkdir -c1 $DIR/$tdir
9337         lru_resize_disable mdc
9338         lru_resize_disable osc
9339         ! $LCTL get_param debug | grep -q dlmtrace &&
9340                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9341         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9342         cancel_lru_locks mdc
9343         cancel_lru_locks osc
9344         dd if=$DIR/$tdir/f1 of=/dev/null
9345         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9346         # XXX client can not do early lock cancel of OST lock
9347         # during unlink (LU-4206), so cancel osc lock now.
9348         sleep 2
9349         cancel_lru_locks osc
9350         can1=$(do_facet $SINGLEMDS \
9351                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9352                awk '/ldlm_cancel/ {print $2}')
9353         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9354                awk '/ldlm_bl_callback/ {print $2}')
9355         unlink $DIR/$tdir/f1
9356         sleep 5
9357         can2=$(do_facet $SINGLEMDS \
9358                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9359                awk '/ldlm_cancel/ {print $2}')
9360         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9361                awk '/ldlm_bl_callback/ {print $2}')
9362         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9363                 $LCTL dk $TMP/cancel.debug.txt
9364         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9365                 $LCTL dk $TMP/blocking.debug.txt
9366         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9367         lru_resize_enable mdc
9368         lru_resize_enable osc
9369 }
9370 run_test 120e "Early Lock Cancel: unlink test"
9371
9372 test_120f() {
9373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9374         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9375                 { skip "no early lock cancel on server"; return 0; }
9376         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9377         test_mkdir -c1 $DIR/$tdir
9378         lru_resize_disable mdc
9379         lru_resize_disable osc
9380         test_mkdir -c1 $DIR/$tdir/d1
9381         test_mkdir -c1 $DIR/$tdir/d2
9382         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9383         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9384         cancel_lru_locks mdc
9385         cancel_lru_locks osc
9386         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9387         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9388         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9389         # XXX client can not do early lock cancel of OST lock
9390         # during rename (LU-4206), so cancel osc lock now.
9391         sleep 2
9392         cancel_lru_locks osc
9393         can1=$(do_facet $SINGLEMDS \
9394                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9395                awk '/ldlm_cancel/ {print $2}')
9396         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9397                awk '/ldlm_bl_callback/ {print $2}')
9398         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9399         sleep 5
9400         can2=$(do_facet $SINGLEMDS \
9401                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9402                awk '/ldlm_cancel/ {print $2}')
9403         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9404                awk '/ldlm_bl_callback/ {print $2}')
9405         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9406         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9407         lru_resize_enable mdc
9408         lru_resize_enable osc
9409 }
9410 run_test 120f "Early Lock Cancel: rename test"
9411
9412 test_120g() {
9413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9414         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9415                 { skip "no early lock cancel on server"; return 0; }
9416         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9417         lru_resize_disable mdc
9418         lru_resize_disable osc
9419         count=10000
9420         echo create $count files
9421         test_mkdir $DIR/$tdir
9422         cancel_lru_locks mdc
9423         cancel_lru_locks osc
9424         t0=$(date +%s)
9425
9426         can0=$(do_facet $SINGLEMDS \
9427                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9428                awk '/ldlm_cancel/ {print $2}')
9429         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9430                awk '/ldlm_bl_callback/ {print $2}')
9431         createmany -o $DIR/$tdir/f $count
9432         sync
9433         can1=$(do_facet $SINGLEMDS \
9434                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9435                awk '/ldlm_cancel/ {print $2}')
9436         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9437                awk '/ldlm_bl_callback/ {print $2}')
9438         t1=$(date +%s)
9439         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9440         echo rm $count files
9441         rm -r $DIR/$tdir
9442         sync
9443         can2=$(do_facet $SINGLEMDS \
9444                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9445                awk '/ldlm_cancel/ {print $2}')
9446         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9447                awk '/ldlm_bl_callback/ {print $2}')
9448         t2=$(date +%s)
9449         echo total: $count removes in $((t2-t1))
9450         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9451         sleep 2
9452         # wait for commitment of removal
9453         lru_resize_enable mdc
9454         lru_resize_enable osc
9455 }
9456 run_test 120g "Early Lock Cancel: performance test"
9457
9458 test_121() { #bug #10589
9459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9460         rm -rf $DIR/$tfile
9461         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9462 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9463         lctl set_param fail_loc=0x310
9464         cancel_lru_locks osc > /dev/null
9465         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9466         lctl set_param fail_loc=0
9467         [[ $reads -eq $writes ]] ||
9468                 error "read $reads blocks, must be $writes blocks"
9469 }
9470 run_test 121 "read cancel race ========="
9471
9472 test_123a() { # was test 123, statahead(bug 11401)
9473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9474         SLOWOK=0
9475         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9476                 log "testing UP system. Performance may be lower than expected."
9477                 SLOWOK=1
9478         fi
9479
9480         rm -rf $DIR/$tdir
9481         test_mkdir $DIR/$tdir
9482         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9483         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9484         MULT=10
9485         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9486                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9487
9488                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9489                 lctl set_param -n llite.*.statahead_max 0
9490                 lctl get_param llite.*.statahead_max
9491                 cancel_lru_locks mdc
9492                 cancel_lru_locks osc
9493                 stime=`date +%s`
9494                 time ls -l $DIR/$tdir | wc -l
9495                 etime=`date +%s`
9496                 delta=$((etime - stime))
9497                 log "ls $i files without statahead: $delta sec"
9498                 lctl set_param llite.*.statahead_max=$max
9499
9500                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9501                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9502                 cancel_lru_locks mdc
9503                 cancel_lru_locks osc
9504                 stime=`date +%s`
9505                 time ls -l $DIR/$tdir | wc -l
9506                 etime=`date +%s`
9507                 delta_sa=$((etime - stime))
9508                 log "ls $i files with statahead: $delta_sa sec"
9509                 lctl get_param -n llite.*.statahead_stats
9510                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9511
9512                 [[ $swrong -lt $ewrong ]] &&
9513                         log "statahead was stopped, maybe too many locks held!"
9514                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9515
9516                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9517                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9518                     lctl set_param -n llite.*.statahead_max 0
9519                     lctl get_param llite.*.statahead_max
9520                     cancel_lru_locks mdc
9521                     cancel_lru_locks osc
9522                     stime=`date +%s`
9523                     time ls -l $DIR/$tdir | wc -l
9524                     etime=`date +%s`
9525                     delta=$((etime - stime))
9526                     log "ls $i files again without statahead: $delta sec"
9527                     lctl set_param llite.*.statahead_max=$max
9528                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9529                         if [  $SLOWOK -eq 0 ]; then
9530                                 error "ls $i files is slower with statahead!"
9531                         else
9532                                 log "ls $i files is slower with statahead!"
9533                         fi
9534                         break
9535                     fi
9536                 fi
9537
9538                 [ $delta -gt 20 ] && break
9539                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9540                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9541         done
9542         log "ls done"
9543
9544         stime=`date +%s`
9545         rm -r $DIR/$tdir
9546         sync
9547         etime=`date +%s`
9548         delta=$((etime - stime))
9549         log "rm -r $DIR/$tdir/: $delta seconds"
9550         log "rm done"
9551         lctl get_param -n llite.*.statahead_stats
9552 }
9553 run_test 123a "verify statahead work"
9554
9555 test_123b () { # statahead(bug 15027)
9556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9557         test_mkdir $DIR/$tdir
9558         createmany -o $DIR/$tdir/$tfile-%d 1000
9559
9560         cancel_lru_locks mdc
9561         cancel_lru_locks osc
9562
9563 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9564         lctl set_param fail_loc=0x80000803
9565         ls -lR $DIR/$tdir > /dev/null
9566         log "ls done"
9567         lctl set_param fail_loc=0x0
9568         lctl get_param -n llite.*.statahead_stats
9569         rm -r $DIR/$tdir
9570         sync
9571
9572 }
9573 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9574
9575 test_124a() {
9576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9577         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9578                 { skip "no lru resize on server"; return 0; }
9579         local NR=2000
9580         test_mkdir $DIR/$tdir
9581
9582         log "create $NR files at $DIR/$tdir"
9583         createmany -o $DIR/$tdir/f $NR ||
9584                 error "failed to create $NR files in $DIR/$tdir"
9585
9586         cancel_lru_locks mdc
9587         ls -l $DIR/$tdir > /dev/null
9588
9589         local NSDIR=""
9590         local LRU_SIZE=0
9591         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9592                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9593                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9594                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9595                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9596                         log "NSDIR=$NSDIR"
9597                         log "NS=$(basename $NSDIR)"
9598                         break
9599                 fi
9600         done
9601
9602         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9603                 skip "Not enough cached locks created!"
9604                 return 0
9605         fi
9606         log "LRU=$LRU_SIZE"
9607
9608         local SLEEP=30
9609
9610         # We know that lru resize allows one client to hold $LIMIT locks
9611         # for 10h. After that locks begin to be killed by client.
9612         local MAX_HRS=10
9613         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9614         log "LIMIT=$LIMIT"
9615         if [ $LIMIT -lt $LRU_SIZE ]; then
9616             skip "Limit is too small $LIMIT"
9617             return 0
9618         fi
9619
9620         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9621         # killing locks. Some time was spent for creating locks. This means
9622         # that up to the moment of sleep finish we must have killed some of
9623         # them (10-100 locks). This depends on how fast ther were created.
9624         # Many of them were touched in almost the same moment and thus will
9625         # be killed in groups.
9626         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9627
9628         # Use $LRU_SIZE_B here to take into account real number of locks
9629         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9630         local LRU_SIZE_B=$LRU_SIZE
9631         log "LVF=$LVF"
9632         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9633         log "OLD_LVF=$OLD_LVF"
9634         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9635
9636         # Let's make sure that we really have some margin. Client checks
9637         # cached locks every 10 sec.
9638         SLEEP=$((SLEEP+20))
9639         log "Sleep ${SLEEP} sec"
9640         local SEC=0
9641         while ((SEC<$SLEEP)); do
9642                 echo -n "..."
9643                 sleep 5
9644                 SEC=$((SEC+5))
9645                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9646                 echo -n "$LRU_SIZE"
9647         done
9648         echo ""
9649         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9650         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9651
9652         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9653                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9654                 unlinkmany $DIR/$tdir/f $NR
9655                 return
9656         }
9657
9658         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9659         log "unlink $NR files at $DIR/$tdir"
9660         unlinkmany $DIR/$tdir/f $NR
9661 }
9662 run_test 124a "lru resize ======================================="
9663
9664 get_max_pool_limit()
9665 {
9666         local limit=$($LCTL get_param \
9667                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9668         local max=0
9669         for l in $limit; do
9670                 if [[ $l -gt $max ]]; then
9671                         max=$l
9672                 fi
9673         done
9674         echo $max
9675 }
9676
9677 test_124b() {
9678         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9679         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9680                 { skip "no lru resize on server"; return 0; }
9681
9682         LIMIT=$(get_max_pool_limit)
9683
9684         NR=$(($(default_lru_size)*20))
9685         if [[ $NR -gt $LIMIT ]]; then
9686                 log "Limit lock number by $LIMIT locks"
9687                 NR=$LIMIT
9688         fi
9689
9690         IFree=$(mdsrate_inodes_available)
9691         if [ $IFree -lt $NR ]; then
9692                 log "Limit lock number by $IFree inodes"
9693                 NR=$IFree
9694         fi
9695
9696         lru_resize_disable mdc
9697         test_mkdir -p $DIR/$tdir/disable_lru_resize
9698
9699         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9700         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9701         cancel_lru_locks mdc
9702         stime=`date +%s`
9703         PID=""
9704         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9705         PID="$PID $!"
9706         sleep 2
9707         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9708         PID="$PID $!"
9709         sleep 2
9710         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9711         PID="$PID $!"
9712         wait $PID
9713         etime=`date +%s`
9714         nolruresize_delta=$((etime-stime))
9715         log "ls -la time: $nolruresize_delta seconds"
9716         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9717         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9718
9719         lru_resize_enable mdc
9720         test_mkdir -p $DIR/$tdir/enable_lru_resize
9721
9722         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9723         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9724         cancel_lru_locks mdc
9725         stime=`date +%s`
9726         PID=""
9727         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9728         PID="$PID $!"
9729         sleep 2
9730         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9731         PID="$PID $!"
9732         sleep 2
9733         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9734         PID="$PID $!"
9735         wait $PID
9736         etime=`date +%s`
9737         lruresize_delta=$((etime-stime))
9738         log "ls -la time: $lruresize_delta seconds"
9739         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9740
9741         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9742                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9743         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9744                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9745         else
9746                 log "lru resize performs the same with no lru resize"
9747         fi
9748         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9749 }
9750 run_test 124b "lru resize (performance test) ======================="
9751
9752 test_124c() {
9753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9754         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9755                 { skip "no lru resize on server"; return 0; }
9756
9757         # cache ununsed locks on client
9758         local nr=100
9759         cancel_lru_locks mdc
9760         test_mkdir $DIR/$tdir
9761         createmany -o $DIR/$tdir/f $nr ||
9762                 error "failed to create $nr files in $DIR/$tdir"
9763         ls -l $DIR/$tdir > /dev/null
9764
9765         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9766         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9767         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9768         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9769         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9770
9771         # set lru_max_age to 1 sec
9772         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
9773         echo "sleep $((recalc_p * 2)) seconds..."
9774         sleep $((recalc_p * 2))
9775
9776         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9777         # restore lru_max_age
9778         $LCTL set_param -n $nsdir.lru_max_age $max_age
9779         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9780         unlinkmany $DIR/$tdir/f $nr
9781 }
9782 run_test 124c "LRUR cancel very aged locks"
9783
9784 test_125() { # 13358
9785         $LCTL get_param -n llite.*.client_type | grep -q local ||
9786                 { skip "must run as local client"; return; }
9787         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
9788                 { skip "must have acl enabled"; return; }
9789         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9790         test_mkdir $DIR/$tdir
9791         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
9792         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
9793         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
9794 }
9795 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9796
9797 test_126() { # bug 12829/13455
9798         $LCTL get_param -n llite.*.client_type | grep -q local ||
9799                 { skip "must run as local client"; return; }
9800         [ "$UID" != 0 ] && skip_env "$TESTNAME (must run as root)" && return
9801         $GSS && skip "must run as gss disabled" && return
9802
9803         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9804         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9805         rm -f $DIR/$tfile
9806         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9807 }
9808 run_test 126 "check that the fsgid provided by the client is taken into account"
9809
9810 test_127a() { # bug 15521
9811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9812         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9813         $LCTL set_param osc.*.stats=0
9814         FSIZE=$((2048 * 1024))
9815         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9816         cancel_lru_locks osc
9817         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9818
9819         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9820         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9821                 echo "got $COUNT $NAME"
9822                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9823                 eval $NAME=$COUNT || error "Wrong proc format"
9824
9825                 case $NAME in
9826                         read_bytes|write_bytes)
9827                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9828                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9829                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9830                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9831                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9832                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9833                                 error "sumsquare is too small: $SUMSQ"
9834                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9835                                 error "sumsquare is too big: $SUMSQ"
9836                         ;;
9837                         *) ;;
9838                 esac
9839         done < $DIR/${tfile}.tmp
9840
9841         #check that we actually got some stats
9842         [ "$read_bytes" ] || error "Missing read_bytes stats"
9843         [ "$write_bytes" ] || error "Missing write_bytes stats"
9844         [ "$read_bytes" != 0 ] || error "no read done"
9845         [ "$write_bytes" != 0 ] || error "no write done"
9846 }
9847 run_test 127a "verify the client stats are sane"
9848
9849 test_127b() { # bug LU-333
9850         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9851         $LCTL set_param llite.*.stats=0
9852         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9853         # perform 2 reads and writes so MAX is different from SUM.
9854         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9855         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9856         cancel_lru_locks osc
9857         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9858         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9859
9860         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9861         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9862                 echo "got $COUNT $NAME"
9863                 eval $NAME=$COUNT || error "Wrong proc format"
9864
9865         case $NAME in
9866                 read_bytes)
9867                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9868                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9869                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9870                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9871                         ;;
9872                 write_bytes)
9873                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9874                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9875                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9876                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9877                         ;;
9878                         *) ;;
9879                 esac
9880         done < $TMP/${tfile}.tmp
9881
9882         #check that we actually got some stats
9883         [ "$read_bytes" ] || error "Missing read_bytes stats"
9884         [ "$write_bytes" ] || error "Missing write_bytes stats"
9885         [ "$read_bytes" != 0 ] || error "no read done"
9886         [ "$write_bytes" != 0 ] || error "no write done"
9887
9888         rm -f $TMP/${tfile}.tmp
9889 }
9890 run_test 127b "verify the llite client stats are sane"
9891
9892 test_128() { # bug 15212
9893         touch $DIR/$tfile
9894         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9895                 find $DIR/$tfile
9896                 find $DIR/$tfile
9897         EOF
9898
9899         result=$(grep error $TMP/$tfile.log)
9900         rm -f $DIR/$tfile $TMP/$tfile.log
9901         [ -z "$result" ] ||
9902                 error "consecutive find's under interactive lfs failed"
9903 }
9904 run_test 128 "interactive lfs for 2 consecutive find's"
9905
9906 set_dir_limits () {
9907         local mntdev
9908         local canondev
9909         local node
9910
9911         local ldproc=/proc/fs/ldiskfs
9912         local facets=$(get_facets MDS)
9913
9914         for facet in ${facets//,/ }; do
9915                 canondev=$(ldiskfs_canon \
9916                            *.$(convert_facet2label $facet).mntdev $facet)
9917                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9918                         ldproc=/sys/fs/ldiskfs
9919                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9920                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9921         done
9922 }
9923
9924 check_mds_dmesg() {
9925         local facets=$(get_facets MDS)
9926         for facet in ${facets//,/ }; do
9927                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9928         done
9929         return 1
9930 }
9931
9932 test_129() {
9933         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9934                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9935
9936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9937         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9938                 skip "ldiskfs only test"
9939                 return
9940         fi
9941         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9942         local ENOSPC=28
9943         local EFBIG=27
9944         local has_warning=false
9945
9946         rm -rf $DIR/$tdir
9947         mkdir -p $DIR/$tdir
9948
9949         # block size of mds1
9950         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9951         set_dir_limits $maxsize $maxsize
9952         local dirsize=$(stat -c%s "$DIR/$tdir")
9953         local nfiles=0
9954         while [[ $dirsize -le $maxsize ]]; do
9955                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9956                 rc=$?
9957                 if ! $has_warning; then
9958                         check_mds_dmesg '"is approaching"' && has_warning=true
9959                 fi
9960                 # check two errors:
9961                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9962                 # EFBIG for previous versions included in ldiskfs series
9963                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9964                         set_dir_limits 0 0
9965                         echo "return code $rc received as expected"
9966
9967                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9968                                 error_exit "create failed w/o dir size limit"
9969
9970                         check_mds_dmesg '"has reached"' ||
9971                                 error_exit "reached message should be output"
9972
9973                         [ $has_warning = "false" ] &&
9974                                 error_exit "warning message should be output"
9975
9976                         dirsize=$(stat -c%s "$DIR/$tdir")
9977
9978                         [[ $dirsize -ge $maxsize ]] && return 0
9979                         error_exit "current dir size $dirsize, " \
9980                                    "previous limit $maxsize"
9981                 elif [ $rc -ne 0 ]; then
9982                         set_dir_limits 0 0
9983                         error_exit "return $rc received instead of expected " \
9984                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9985                 fi
9986                 nfiles=$((nfiles + 1))
9987                 dirsize=$(stat -c%s "$DIR/$tdir")
9988         done
9989
9990         set_dir_limits 0 0
9991         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9992 }
9993 run_test 129 "test directory size limit ========================"
9994
9995 OLDIFS="$IFS"
9996 cleanup_130() {
9997         trap 0
9998         IFS="$OLDIFS"
9999 }
10000
10001 test_130a() {
10002         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10003         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
10004                 return
10005
10006         trap cleanup_130 EXIT RETURN
10007
10008         local fm_file=$DIR/$tfile
10009         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10010         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10011                 error "dd failed for $fm_file"
10012
10013         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10014         filefrag -ves $fm_file
10015         RC=$?
10016         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10017                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10018         [ $RC != 0 ] && error "filefrag $fm_file failed"
10019
10020         filefrag_op=$(filefrag -ve -k $fm_file |
10021                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10022         lun=$($GETSTRIPE -i $fm_file)
10023
10024         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10025         IFS=$'\n'
10026         tot_len=0
10027         for line in $filefrag_op
10028         do
10029                 frag_lun=`echo $line | cut -d: -f5`
10030                 ext_len=`echo $line | cut -d: -f4`
10031                 if (( $frag_lun != $lun )); then
10032                         cleanup_130
10033                         error "FIEMAP on 1-stripe file($fm_file) failed"
10034                         return
10035                 fi
10036                 (( tot_len += ext_len ))
10037         done
10038
10039         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10040                 cleanup_130
10041                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10042                 return
10043         fi
10044
10045         cleanup_130
10046
10047         echo "FIEMAP on single striped file succeeded"
10048 }
10049 run_test 130a "FIEMAP (1-stripe file)"
10050
10051 test_130b() {
10052         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
10053
10054         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10055         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
10056                 return
10057
10058         trap cleanup_130 EXIT RETURN
10059
10060         local fm_file=$DIR/$tfile
10061         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10062                         error "setstripe on $fm_file"
10063         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10064                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10065
10066         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10067                 error "dd failed on $fm_file"
10068
10069         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10070         filefrag_op=$(filefrag -ve -k $fm_file |
10071                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10072
10073         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10074                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10075
10076         IFS=$'\n'
10077         tot_len=0
10078         num_luns=1
10079         for line in $filefrag_op
10080         do
10081                 frag_lun=$(echo $line | cut -d: -f5 |
10082                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10083                 ext_len=$(echo $line | cut -d: -f4)
10084                 if (( $frag_lun != $last_lun )); then
10085                         if (( tot_len != 1024 )); then
10086                                 cleanup_130
10087                                 error "FIEMAP on $fm_file failed; returned " \
10088                                 "len $tot_len for OST $last_lun instead of 1024"
10089                                 return
10090                         else
10091                                 (( num_luns += 1 ))
10092                                 tot_len=0
10093                         fi
10094                 fi
10095                 (( tot_len += ext_len ))
10096                 last_lun=$frag_lun
10097         done
10098         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10099                 cleanup_130
10100                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10101                         "luns or wrong len for OST $last_lun"
10102                 return
10103         fi
10104
10105         cleanup_130
10106
10107         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10108 }
10109 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10110
10111 test_130c() {
10112         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
10113
10114         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10115         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
10116                 return
10117
10118         trap cleanup_130 EXIT RETURN
10119
10120         local fm_file=$DIR/$tfile
10121         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10122         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10123                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10124
10125         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10126                         error "dd failed on $fm_file"
10127
10128         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10129         filefrag_op=$(filefrag -ve -k $fm_file |
10130                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10131
10132         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10133                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10134
10135         IFS=$'\n'
10136         tot_len=0
10137         num_luns=1
10138         for line in $filefrag_op
10139         do
10140                 frag_lun=$(echo $line | cut -d: -f5 |
10141                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10142                 ext_len=$(echo $line | cut -d: -f4)
10143                 if (( $frag_lun != $last_lun )); then
10144                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10145                         if (( logical != 512 )); then
10146                                 cleanup_130
10147                                 error "FIEMAP on $fm_file failed; returned " \
10148                                 "logical start for lun $logical instead of 512"
10149                                 return
10150                         fi
10151                         if (( tot_len != 512 )); then
10152                                 cleanup_130
10153                                 error "FIEMAP on $fm_file failed; returned " \
10154                                 "len $tot_len for OST $last_lun instead of 1024"
10155                                 return
10156                         else
10157                                 (( num_luns += 1 ))
10158                                 tot_len=0
10159                         fi
10160                 fi
10161                 (( tot_len += ext_len ))
10162                 last_lun=$frag_lun
10163         done
10164         if (( num_luns != 2 || tot_len != 512 )); then
10165                 cleanup_130
10166                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10167                         "luns or wrong len for OST $last_lun"
10168                 return
10169         fi
10170
10171         cleanup_130
10172
10173         echo "FIEMAP on 2-stripe file with hole succeeded"
10174 }
10175 run_test 130c "FIEMAP (2-stripe file with hole)"
10176
10177 test_130d() {
10178         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
10179
10180         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10181         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
10182                 return
10183
10184         trap cleanup_130 EXIT RETURN
10185
10186         local fm_file=$DIR/$tfile
10187         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10188                         error "setstripe on $fm_file"
10189         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10190                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10191
10192         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10193         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10194                 error "dd failed on $fm_file"
10195
10196         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10197         filefrag_op=$(filefrag -ve -k $fm_file |
10198                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10199
10200         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10201                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10202
10203         IFS=$'\n'
10204         tot_len=0
10205         num_luns=1
10206         for line in $filefrag_op
10207         do
10208                 frag_lun=$(echo $line | cut -d: -f5 |
10209                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10210                 ext_len=$(echo $line | cut -d: -f4)
10211                 if (( $frag_lun != $last_lun )); then
10212                         if (( tot_len != 1024 )); then
10213                                 cleanup_130
10214                                 error "FIEMAP on $fm_file failed; returned " \
10215                                 "len $tot_len for OST $last_lun instead of 1024"
10216                                 return
10217                         else
10218                                 (( num_luns += 1 ))
10219                                 tot_len=0
10220                         fi
10221                 fi
10222                 (( tot_len += ext_len ))
10223                 last_lun=$frag_lun
10224         done
10225         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10226                 cleanup_130
10227                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10228                         "luns or wrong len for OST $last_lun"
10229                 return
10230         fi
10231
10232         cleanup_130
10233
10234         echo "FIEMAP on N-stripe file succeeded"
10235 }
10236 run_test 130d "FIEMAP (N-stripe file)"
10237
10238 test_130e() {
10239         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
10240
10241         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10242         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
10243
10244         trap cleanup_130 EXIT RETURN
10245
10246         local fm_file=$DIR/$tfile
10247         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10248         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10249                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
10250
10251         NUM_BLKS=512
10252         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10253         for ((i = 0; i < $NUM_BLKS; i++))
10254         do
10255                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10256         done
10257
10258         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10259         filefrag_op=$(filefrag -ve -k $fm_file |
10260                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10261
10262         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10263                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10264
10265         IFS=$'\n'
10266         tot_len=0
10267         num_luns=1
10268         for line in $filefrag_op
10269         do
10270                 frag_lun=$(echo $line | cut -d: -f5 |
10271                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10272                 ext_len=$(echo $line | cut -d: -f4)
10273                 if (( $frag_lun != $last_lun )); then
10274                         if (( tot_len != $EXPECTED_LEN )); then
10275                                 cleanup_130
10276                                 error "FIEMAP on $fm_file failed; returned " \
10277                                 "len $tot_len for OST $last_lun instead " \
10278                                 "of $EXPECTED_LEN"
10279                                 return
10280                         else
10281                                 (( num_luns += 1 ))
10282                                 tot_len=0
10283                         fi
10284                 fi
10285                 (( tot_len += ext_len ))
10286                 last_lun=$frag_lun
10287         done
10288         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10289                 cleanup_130
10290                 error "FIEMAP on $fm_file failed; returned wrong number " \
10291                         "of luns or wrong len for OST $last_lun"
10292                 return
10293         fi
10294
10295         cleanup_130
10296
10297         echo "FIEMAP with continuation calls succeeded"
10298 }
10299 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10300
10301 test_130f() {
10302         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10303         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
10304                 return
10305
10306         local fm_file=$DIR/$tfile
10307         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10308                 error "multiop create with lov_delay_create on $fm_file"
10309
10310         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10311         filefrag_extents=$(filefrag -vek $fm_file |
10312                            awk '/extents? found/ { print $2 }')
10313         if [[ "$filefrag_extents" != "0" ]]; then
10314                 error "FIEMAP on $fm_file failed; " \
10315                       "returned $filefrag_extents expected 0"
10316         fi
10317
10318         rm -f $fm_file
10319 }
10320 run_test 130f "FIEMAP (unstriped file)"
10321
10322 # Test for writev/readv
10323 test_131a() {
10324         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10325                 error "writev test failed"
10326         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10327                 error "readv failed"
10328         rm -f $DIR/$tfile
10329 }
10330 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10331
10332 test_131b() {
10333         local fsize=$((524288 + 1048576 + 1572864))
10334         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10335                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10336                         error "append writev test failed"
10337
10338         ((fsize += 1572864 + 1048576))
10339         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10340                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10341                         error "append writev test failed"
10342         rm -f $DIR/$tfile
10343 }
10344 run_test 131b "test append writev"
10345
10346 test_131c() {
10347         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10348         error "NOT PASS"
10349 }
10350 run_test 131c "test read/write on file w/o objects"
10351
10352 test_131d() {
10353         rwv -f $DIR/$tfile -w -n 1 1572864
10354         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10355         if [ "$NOB" != 1572864 ]; then
10356                 error "Short read filed: read $NOB bytes instead of 1572864"
10357         fi
10358         rm -f $DIR/$tfile
10359 }
10360 run_test 131d "test short read"
10361
10362 test_131e() {
10363         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10364         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10365         error "read hitting hole failed"
10366         rm -f $DIR/$tfile
10367 }
10368 run_test 131e "test read hitting hole"
10369
10370 check_stats() {
10371         local facet=$1
10372         local op=$2
10373         local want=${3:-0}
10374         local res
10375
10376         case $facet in
10377         mds*) res=$(do_facet $facet \
10378                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10379                  ;;
10380         ost*) res=$(do_facet $facet \
10381                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10382                  ;;
10383         *) error "Wrong facet '$facet'" ;;
10384         esac
10385         echo $res
10386         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10387         # if the argument $3 is zero, it means any stat increment is ok.
10388         if [[ $want -gt 0 ]]; then
10389                 local count=$(echo $res | awk '{ print $2 }')
10390                 [[ $count -ne $want ]] &&
10391                         error "The $op counter on $facet is $count, not $want"
10392         fi
10393 }
10394
10395 test_133a() {
10396         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10397         remote_ost_nodsh && skip "remote OST with nodsh" && return
10398         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10399
10400         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10401                 { skip "MDS doesn't support rename stats"; return; }
10402         local testdir=$DIR/${tdir}/stats_testdir
10403         mkdir -p $DIR/${tdir}
10404
10405         # clear stats.
10406         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10407         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10408
10409         # verify mdt stats first.
10410         mkdir ${testdir} || error "mkdir failed"
10411         check_stats $SINGLEMDS "mkdir" 1
10412         touch ${testdir}/${tfile} || error "touch failed"
10413         check_stats $SINGLEMDS "open" 1
10414         check_stats $SINGLEMDS "close" 1
10415         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10416                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10417                 check_stats $SINGLEMDS "mknod" 2
10418         }
10419         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10420         check_stats $SINGLEMDS "unlink" 1
10421         rm -f ${testdir}/${tfile} || error "file remove failed"
10422         check_stats $SINGLEMDS "unlink" 2
10423
10424         # remove working dir and check mdt stats again.
10425         rmdir ${testdir} || error "rmdir failed"
10426         check_stats $SINGLEMDS "rmdir" 1
10427
10428         local testdir1=$DIR/${tdir}/stats_testdir1
10429         mkdir -p ${testdir}
10430         mkdir -p ${testdir1}
10431         touch ${testdir1}/test1
10432         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10433         check_stats $SINGLEMDS "crossdir_rename" 1
10434
10435         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10436         check_stats $SINGLEMDS "samedir_rename" 1
10437
10438         rm -rf $DIR/${tdir}
10439 }
10440 run_test 133a "Verifying MDT stats ========================================"
10441
10442 test_133b() {
10443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10444         remote_ost_nodsh && skip "remote OST with nodsh" && return
10445         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10446         local testdir=$DIR/${tdir}/stats_testdir
10447         mkdir -p ${testdir} || error "mkdir failed"
10448         touch ${testdir}/${tfile} || error "touch failed"
10449         cancel_lru_locks mdc
10450
10451         # clear stats.
10452         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10453         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10454
10455         # extra mdt stats verification.
10456         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10457         check_stats $SINGLEMDS "setattr" 1
10458         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10459         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10460         then            # LU-1740
10461                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10462                 check_stats $SINGLEMDS "getattr" 1
10463         fi
10464         $LFS df || error "lfs failed"
10465         check_stats $SINGLEMDS "statfs" 1
10466
10467         rm -rf $DIR/${tdir}
10468 }
10469 run_test 133b "Verifying extra MDT stats =================================="
10470
10471 test_133c() {
10472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10473         remote_ost_nodsh && skip "remote OST with nodsh" && return
10474         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10475         local testdir=$DIR/$tdir/stats_testdir
10476         test_mkdir -p $testdir
10477
10478         # verify obdfilter stats.
10479         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10480         sync
10481         cancel_lru_locks osc
10482         wait_delete_completed
10483
10484         # clear stats.
10485         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10486         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10487
10488         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10489                 error "dd failed"
10490         sync
10491         cancel_lru_locks osc
10492         check_stats ost1 "write" 1
10493
10494         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10495         check_stats ost1 "read" 1
10496
10497         > $testdir/$tfile || error "truncate failed"
10498         check_stats ost1 "punch" 1
10499
10500         rm -f $testdir/$tfile || error "file remove failed"
10501         wait_delete_completed
10502         check_stats ost1 "destroy" 1
10503
10504         rm -rf $DIR/$tdir
10505 }
10506 run_test 133c "Verifying OST stats ========================================"
10507
10508 order_2() {
10509         local value=$1
10510         local orig=$value
10511         local order=1
10512
10513         while [ $value -ge 2 ]; do
10514                 order=$((order*2))
10515                 value=$((value/2))
10516         done
10517
10518         if [ $orig -gt $order ]; then
10519                 order=$((order*2))
10520         fi
10521         echo $order
10522 }
10523
10524 size_in_KMGT() {
10525     local value=$1
10526     local size=('K' 'M' 'G' 'T');
10527     local i=0
10528     local size_string=$value
10529
10530     while [ $value -ge 1024 ]; do
10531         if [ $i -gt 3 ]; then
10532             #T is the biggest unit we get here, if that is bigger,
10533             #just return XXXT
10534             size_string=${value}T
10535             break
10536         fi
10537         value=$((value >> 10))
10538         if [ $value -lt 1024 ]; then
10539             size_string=${value}${size[$i]}
10540             break
10541         fi
10542         i=$((i + 1))
10543     done
10544
10545     echo $size_string
10546 }
10547
10548 get_rename_size() {
10549         local size=$1
10550         local context=${2:-.}
10551         local sample=$(do_facet $SINGLEMDS $LCTL \
10552                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10553                 grep -A1 $context |
10554                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10555         echo $sample
10556 }
10557
10558 test_133d() {
10559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10560         remote_ost_nodsh && skip "remote OST with nodsh" && return
10561         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10562         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10563         { skip "MDS doesn't support rename stats"; return; }
10564
10565         local testdir1=$DIR/${tdir}/stats_testdir1
10566         local testdir2=$DIR/${tdir}/stats_testdir2
10567         mkdir -p $DIR/${tdir}
10568
10569         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10570
10571         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10572         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10573
10574         createmany -o $testdir1/test 512 || error "createmany failed"
10575
10576         # check samedir rename size
10577         mv ${testdir1}/test0 ${testdir1}/test_0
10578
10579         local testdir1_size=$(ls -l $DIR/${tdir} |
10580                 awk '/stats_testdir1/ {print $5}')
10581         local testdir2_size=$(ls -l $DIR/${tdir} |
10582                 awk '/stats_testdir2/ {print $5}')
10583
10584         testdir1_size=$(order_2 $testdir1_size)
10585         testdir2_size=$(order_2 $testdir2_size)
10586
10587         testdir1_size=$(size_in_KMGT $testdir1_size)
10588         testdir2_size=$(size_in_KMGT $testdir2_size)
10589
10590         echo "source rename dir size: ${testdir1_size}"
10591         echo "target rename dir size: ${testdir2_size}"
10592
10593         local cmd="do_facet $SINGLEMDS $LCTL "
10594         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10595
10596         eval $cmd || error "$cmd failed"
10597         local samedir=$($cmd | grep 'same_dir')
10598         local same_sample=$(get_rename_size $testdir1_size)
10599         [ -z "$samedir" ] && error "samedir_rename_size count error"
10600         [[ $same_sample -eq 1 ]] ||
10601                 error "samedir_rename_size error $same_sample"
10602         echo "Check same dir rename stats success"
10603
10604         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10605
10606         # check crossdir rename size
10607         mv ${testdir1}/test_0 ${testdir2}/test_0
10608
10609         testdir1_size=$(ls -l $DIR/${tdir} |
10610                 awk '/stats_testdir1/ {print $5}')
10611         testdir2_size=$(ls -l $DIR/${tdir} |
10612                 awk '/stats_testdir2/ {print $5}')
10613
10614         testdir1_size=$(order_2 $testdir1_size)
10615         testdir2_size=$(order_2 $testdir2_size)
10616
10617         testdir1_size=$(size_in_KMGT $testdir1_size)
10618         testdir2_size=$(size_in_KMGT $testdir2_size)
10619
10620         echo "source rename dir size: ${testdir1_size}"
10621         echo "target rename dir size: ${testdir2_size}"
10622
10623         eval $cmd || error "$cmd failed"
10624         local crossdir=$($cmd | grep 'crossdir')
10625         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10626         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10627         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10628         [[ $src_sample -eq 1 ]] ||
10629                 error "crossdir_rename_size error $src_sample"
10630         [[ $tgt_sample -eq 1 ]] ||
10631                 error "crossdir_rename_size error $tgt_sample"
10632         echo "Check cross dir rename stats success"
10633         rm -rf $DIR/${tdir}
10634 }
10635 run_test 133d "Verifying rename_stats ========================================"
10636
10637 test_133e() {
10638         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10639         remote_ost_nodsh && skip "remote OST with nodsh" && return
10640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10641         local testdir=$DIR/${tdir}/stats_testdir
10642         local ctr f0 f1 bs=32768 count=42 sum
10643
10644         mkdir -p ${testdir} || error "mkdir failed"
10645
10646         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
10647
10648         for ctr in {write,read}_bytes; do
10649                 sync
10650                 cancel_lru_locks osc
10651
10652                 do_facet ost1 $LCTL set_param -n \
10653                         "obdfilter.*.exports.clear=clear"
10654
10655                 if [ $ctr = write_bytes ]; then
10656                         f0=/dev/zero
10657                         f1=${testdir}/${tfile}
10658                 else
10659                         f0=${testdir}/${tfile}
10660                         f1=/dev/null
10661                 fi
10662
10663                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10664                         error "dd failed"
10665                 sync
10666                 cancel_lru_locks osc
10667
10668                 sum=$(do_facet ost1 $LCTL get_param \
10669                         "obdfilter.*.exports.*.stats" |
10670                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10671                                 $1 == ctr { sum += $7 }
10672                                 END { printf("%0.0f", sum) }')
10673
10674                 if ((sum != bs * count)); then
10675                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10676                 fi
10677         done
10678
10679         rm -rf $DIR/${tdir}
10680 }
10681 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10682
10683 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10684
10685 test_133f() {
10686         # First without trusting modes.
10687         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10688         echo "proc_dirs='$proc_dirs'"
10689         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10690         find $proc_dirs -exec cat '{}' \; &> /dev/null
10691
10692         # Second verifying readability.
10693         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
10694
10695         # Verifing writability with badarea_io.
10696         find $proc_dirs \
10697                 -ignore_readdir_race \
10698                 -type f \
10699                 -not -name force_lbug \
10700                 -not -name changelog_mask \
10701                 -exec badarea_io '{}' \; ||
10702                         error "find $proc_dirs failed"
10703 }
10704 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
10705
10706 test_133g() {
10707         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10708         remote_ost_nodsh && skip "remote OST with nodsh" && return
10709
10710         # eventually, this can also be replaced with "lctl get_param -R",
10711         # but not until that option is always available on the server
10712         local facet
10713         for facet in mds1 ost1; do
10714                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
10715                         skip "Too old lustre on $facet" && continue
10716                 local facet_proc_dirs=$(do_facet $facet \
10717                                         \\\ls -d $proc_regexp 2>/dev/null)
10718                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10719                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10720                 do_facet $facet find $facet_proc_dirs \
10721                         ! -name req_history \
10722                         -exec cat '{}' \\\; &> /dev/null
10723
10724                 do_facet $facet find $facet_proc_dirs \
10725                         ! -name req_history \
10726                         -type f \
10727                         -exec cat '{}' \\\; &> /dev/null ||
10728                                 error "proc file read failed"
10729
10730                 do_facet $facet find $facet_proc_dirs \
10731                         -ignore_readdir_race \
10732                         -type f \
10733                         -not -name force_lbug \
10734                         -not -name changelog_mask \
10735                         -exec badarea_io '{}' \\\; ||
10736                                 error "$facet find $facet_proc_dirs failed"
10737         done
10738
10739         # remount the FS in case writes/reads /proc break the FS
10740         cleanup || error "failed to unmount"
10741         setup || error "failed to setup"
10742         true
10743 }
10744 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
10745
10746 test_133h() {
10747         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10748         remote_ost_nodsh && skip "remote OST with nodsh" && return
10749         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
10750                 skip "Need MDS version at least 2.9.54" && return
10751
10752         local facet
10753         for facet in client mds1 ost1; do
10754                 local facet_proc_dirs=$(do_facet $facet \
10755                                         \\\ls -d $proc_regexp 2> /dev/null)
10756                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10757                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10758                 # Get the list of files that are missing the terminating newline
10759                 local missing=($(do_facet $facet \
10760                         find ${facet_proc_dirs} -type f \|              \
10761                                 while read F\; do                       \
10762                                         awk -v FS='\v' -v RS='\v\v'     \
10763                                         "'END { if(NR>0 &&              \
10764                                         \\\$NF !~ /.*\\\n\$/)           \
10765                                                 print FILENAME}'"       \
10766                                         '\$F'\;                         \
10767                                 done 2>/dev/null))
10768                 [ ${#missing[*]} -eq 0 ] ||
10769                         error "files do not end with newline: ${missing[*]}"
10770         done
10771 }
10772 run_test 133h "Proc files should end with newlines"
10773
10774 test_134a() {
10775         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10776         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10777                 skip "Need MDS version at least 2.7.54" && return
10778
10779         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10780         cancel_lru_locks mdc
10781
10782         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10783         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10784         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10785
10786         local nr=1000
10787         createmany -o $DIR/$tdir/f $nr ||
10788                 error "failed to create $nr files in $DIR/$tdir"
10789         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10790
10791         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10792         do_facet mds1 $LCTL set_param fail_loc=0x327
10793         do_facet mds1 $LCTL set_param fail_val=500
10794         touch $DIR/$tdir/m
10795
10796         echo "sleep 10 seconds ..."
10797         sleep 10
10798         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10799
10800         do_facet mds1 $LCTL set_param fail_loc=0
10801         do_facet mds1 $LCTL set_param fail_val=0
10802         [ $lck_cnt -lt $unused ] ||
10803                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10804
10805         rm $DIR/$tdir/m
10806         unlinkmany $DIR/$tdir/f $nr
10807 }
10808 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10809
10810 test_134b() {
10811         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10812         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10813                 skip "Need MDS version at least 2.7.54" && return
10814
10815         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10816         cancel_lru_locks mdc
10817
10818         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10819                         ldlm.lock_reclaim_threshold_mb)
10820         # disable reclaim temporarily
10821         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10822
10823         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10824         do_facet mds1 $LCTL set_param fail_loc=0x328
10825         do_facet mds1 $LCTL set_param fail_val=500
10826
10827         $LCTL set_param debug=+trace
10828
10829         local nr=600
10830         createmany -o $DIR/$tdir/f $nr &
10831         local create_pid=$!
10832
10833         echo "Sleep $TIMEOUT seconds ..."
10834         sleep $TIMEOUT
10835         if ! ps -p $create_pid  > /dev/null 2>&1; then
10836                 do_facet mds1 $LCTL set_param fail_loc=0
10837                 do_facet mds1 $LCTL set_param fail_val=0
10838                 do_facet mds1 $LCTL set_param \
10839                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10840                 error "createmany finished incorrectly!"
10841         fi
10842         do_facet mds1 $LCTL set_param fail_loc=0
10843         do_facet mds1 $LCTL set_param fail_val=0
10844         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10845         wait $create_pid || return 1
10846
10847         unlinkmany $DIR/$tdir/f $nr
10848 }
10849 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10850
10851 test_140() { #bug-17379
10852         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10853         test_mkdir $DIR/$tdir
10854         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10855         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10856
10857         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10858         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10859         local i=0
10860         while i=$((i + 1)); do
10861                 test_mkdir $i
10862                 cd $i || error "Changing to $i"
10863                 ln -s ../stat stat || error "Creating stat symlink"
10864                 # Read the symlink until ELOOP present,
10865                 # not LBUGing the system is considered success,
10866                 # we didn't overrun the stack.
10867                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10868                 if [ $ret -ne 0 ]; then
10869                         if [ $ret -eq 40 ]; then
10870                                 break  # -ELOOP
10871                         else
10872                                 error "Open stat symlink"
10873                                         return
10874                         fi
10875                 fi
10876         done
10877         i=$((i - 1))
10878         echo "The symlink depth = $i"
10879         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10880                                         error "Invalid symlink depth"
10881
10882         # Test recursive symlink
10883         ln -s symlink_self symlink_self
10884         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10885         echo "open symlink_self returns $ret"
10886         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10887 }
10888 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10889
10890 test_150() {
10891         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10892         local TF="$TMP/$tfile"
10893
10894         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10895         cp $TF $DIR/$tfile
10896         cancel_lru_locks $OSC
10897         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10898         remount_client $MOUNT
10899         df -P $MOUNT
10900         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10901
10902         $TRUNCATE $TF 6000
10903         $TRUNCATE $DIR/$tfile 6000
10904         cancel_lru_locks $OSC
10905         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10906
10907         echo "12345" >>$TF
10908         echo "12345" >>$DIR/$tfile
10909         cancel_lru_locks $OSC
10910         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10911
10912         echo "12345" >>$TF
10913         echo "12345" >>$DIR/$tfile
10914         cancel_lru_locks $OSC
10915         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10916
10917         rm -f $TF
10918         true
10919 }
10920 run_test 150 "truncate/append tests"
10921
10922 #LU-2902 roc_hit was not able to read all values from lproc
10923 function roc_hit_init() {
10924         local list=$(comma_list $(osts_nodes))
10925         local dir=$DIR/$tdir-check
10926         local file=$dir/$tfile
10927         local BEFORE
10928         local AFTER
10929         local idx
10930
10931         test_mkdir $dir
10932         #use setstripe to do a write to every ost
10933         for i in $(seq 0 $((OSTCOUNT-1))); do
10934                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10935                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10936                 idx=$(printf %04x $i)
10937                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10938                         awk '$1 == "cache_access" {sum += $7}
10939                                 END { printf("%0.0f", sum) }')
10940
10941                 cancel_lru_locks osc
10942                 cat $file >/dev/null
10943
10944                 AFTER=$(get_osd_param $list *OST*$idx stats |
10945                         awk '$1 == "cache_access" {sum += $7}
10946                                 END { printf("%0.0f", sum) }')
10947
10948                 echo BEFORE:$BEFORE AFTER:$AFTER
10949                 if ! let "AFTER - BEFORE == 4"; then
10950                         rm -rf $dir
10951                         error "roc_hit is not safe to use"
10952                 fi
10953                 rm $file
10954         done
10955
10956         rm -rf $dir
10957 }
10958
10959 function roc_hit() {
10960         local list=$(comma_list $(osts_nodes))
10961         echo $(get_osd_param $list '' stats |
10962                 awk '$1 == "cache_hit" {sum += $7}
10963                         END { printf("%0.0f", sum) }')
10964 }
10965
10966 function set_cache() {
10967         local on=1
10968
10969         if [ "$2" == "off" ]; then
10970                 on=0;
10971         fi
10972         local list=$(comma_list $(osts_nodes))
10973         set_osd_param $list '' $1_cache_enable $on
10974
10975         cancel_lru_locks osc
10976 }
10977
10978 test_151() {
10979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10980         remote_ost_nodsh && skip "remote OST with nodsh" && return
10981
10982         local CPAGES=3
10983         local list=$(comma_list $(osts_nodes))
10984
10985         # check whether obdfilter is cache capable at all
10986         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10987                 echo "not cache-capable obdfilter"
10988                 return 0
10989         fi
10990
10991         # check cache is enabled on all obdfilters
10992         if get_osd_param $list '' read_cache_enable | grep 0; then
10993                 echo "oss cache is disabled"
10994                 return 0
10995         fi
10996
10997         set_osd_param $list '' writethrough_cache_enable 1
10998
10999         # check write cache is enabled on all obdfilters
11000         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11001                 echo "oss write cache is NOT enabled"
11002                 return 0
11003         fi
11004
11005         roc_hit_init
11006
11007         #define OBD_FAIL_OBD_NO_LRU  0x609
11008         do_nodes $list $LCTL set_param fail_loc=0x609
11009
11010         # pages should be in the case right after write
11011         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11012                 error "dd failed"
11013
11014         local BEFORE=$(roc_hit)
11015         cancel_lru_locks osc
11016         cat $DIR/$tfile >/dev/null
11017         local AFTER=$(roc_hit)
11018
11019         do_nodes $list $LCTL set_param fail_loc=0
11020
11021         if ! let "AFTER - BEFORE == CPAGES"; then
11022                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11023         fi
11024
11025         # the following read invalidates the cache
11026         cancel_lru_locks osc
11027         set_osd_param $list '' read_cache_enable 0
11028         cat $DIR/$tfile >/dev/null
11029
11030         # now data shouldn't be found in the cache
11031         BEFORE=$(roc_hit)
11032         cancel_lru_locks osc
11033         cat $DIR/$tfile >/dev/null
11034         AFTER=$(roc_hit)
11035         if let "AFTER - BEFORE != 0"; then
11036                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11037         fi
11038
11039         set_osd_param $list '' read_cache_enable 1
11040         rm -f $DIR/$tfile
11041 }
11042 run_test 151 "test cache on oss and controls ==============================="
11043
11044 test_152() {
11045         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11046         local TF="$TMP/$tfile"
11047
11048         # simulate ENOMEM during write
11049 #define OBD_FAIL_OST_NOMEM      0x226
11050         lctl set_param fail_loc=0x80000226
11051         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11052         cp $TF $DIR/$tfile
11053         sync || error "sync failed"
11054         lctl set_param fail_loc=0
11055
11056         # discard client's cache
11057         cancel_lru_locks osc
11058
11059         # simulate ENOMEM during read
11060         lctl set_param fail_loc=0x80000226
11061         cmp $TF $DIR/$tfile || error "cmp failed"
11062         lctl set_param fail_loc=0
11063
11064         rm -f $TF
11065 }
11066 run_test 152 "test read/write with enomem ============================"
11067
11068 test_153() {
11069         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11070 }
11071 run_test 153 "test if fdatasync does not crash ======================="
11072
11073 dot_lustre_fid_permission_check() {
11074         local fid=$1
11075         local ffid=$MOUNT/.lustre/fid/$fid
11076         local test_dir=$2
11077
11078         echo "stat fid $fid"
11079         stat $ffid > /dev/null || error "stat $ffid failed."
11080         echo "touch fid $fid"
11081         touch $ffid || error "touch $ffid failed."
11082         echo "write to fid $fid"
11083         cat /etc/hosts > $ffid || error "write $ffid failed."
11084         echo "read fid $fid"
11085         diff /etc/hosts $ffid || error "read $ffid failed."
11086         echo "append write to fid $fid"
11087         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11088         echo "rename fid $fid"
11089         mv $ffid $test_dir/$tfile.1 &&
11090                 error "rename $ffid to $tfile.1 should fail."
11091         touch $test_dir/$tfile.1
11092         mv $test_dir/$tfile.1 $ffid &&
11093                 error "rename $tfile.1 to $ffid should fail."
11094         rm -f $test_dir/$tfile.1
11095         echo "truncate fid $fid"
11096         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11097         echo "link fid $fid"
11098         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11099         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11100                 echo "setfacl fid $fid"
11101                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11102                 echo "getfacl fid $fid"
11103                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11104         fi
11105         echo "unlink fid $fid"
11106         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11107         echo "mknod fid $fid"
11108         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11109
11110         fid=[0xf00000400:0x1:0x0]
11111         ffid=$MOUNT/.lustre/fid/$fid
11112
11113         echo "stat non-exist fid $fid"
11114         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11115         echo "write to non-exist fid $fid"
11116         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11117         echo "link new fid $fid"
11118         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11119
11120         mkdir -p $test_dir/$tdir
11121         touch $test_dir/$tdir/$tfile
11122         fid=$($LFS path2fid $test_dir/$tdir)
11123         rc=$?
11124         [ $rc -ne 0 ] &&
11125                 error "error: could not get fid for $test_dir/$dir/$tfile."
11126
11127         ffid=$MOUNT/.lustre/fid/$fid
11128
11129         echo "ls $fid"
11130         ls $ffid > /dev/null || error "ls $ffid failed."
11131         echo "touch $fid/$tfile.1"
11132         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11133
11134         echo "touch $MOUNT/.lustre/fid/$tfile"
11135         touch $MOUNT/.lustre/fid/$tfile && \
11136                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11137
11138         echo "setxattr to $MOUNT/.lustre/fid"
11139         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11140
11141         echo "listxattr for $MOUNT/.lustre/fid"
11142         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11143
11144         echo "delxattr from $MOUNT/.lustre/fid"
11145         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11146
11147         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11148         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11149                 error "touch invalid fid should fail."
11150
11151         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11152         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11153                 error "touch non-normal fid should fail."
11154
11155         echo "rename $tdir to $MOUNT/.lustre/fid"
11156         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11157                 error "rename to $MOUNT/.lustre/fid should fail."
11158
11159         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11160         then            # LU-3547
11161                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11162                 local new_obf_mode=777
11163
11164                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11165                 chmod $new_obf_mode $DIR/.lustre/fid ||
11166                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11167
11168                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11169                 [ $obf_mode -eq $new_obf_mode ] ||
11170                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11171
11172                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11173                 chmod $old_obf_mode $DIR/.lustre/fid ||
11174                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11175         fi
11176
11177         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11178         fid=$($LFS path2fid $test_dir/$tfile-2)
11179
11180         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11181         then # LU-5424
11182                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11183                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11184                         error "create lov data thru .lustre failed"
11185         fi
11186         echo "cp /etc/passwd $test_dir/$tfile-2"
11187         cp /etc/passwd $test_dir/$tfile-2 ||
11188                 error "copy to $test_dir/$tfile-2 failed."
11189         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11190         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11191                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11192
11193         rm -rf $test_dir/tfile.lnk
11194         rm -rf $test_dir/$tfile-2
11195 }
11196
11197 test_154A() {
11198         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11199                 skip "Need MDS version at least 2.4.1" && return
11200
11201         local tf=$DIR/$tfile
11202         touch $tf
11203
11204         local fid=$($LFS path2fid $tf)
11205         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11206
11207         # check that we get the same pathname back
11208         local found=$($LFS fid2path $MOUNT "$fid")
11209         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11210         [ "$found" == "$tf" ] ||
11211                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11212 }
11213 run_test 154A "lfs path2fid and fid2path basic checks"
11214
11215 test_154B() {
11216         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11217                 skip "Need MDS version at least 2.4.1" && return
11218
11219         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11220         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11221         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11222         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11223
11224         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11225         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11226
11227         # check that we get the same pathname
11228         echo "PFID: $PFID, name: $name"
11229         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11230         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11231         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11232                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11233
11234         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11235 }
11236 run_test 154B "verify the ll_decode_linkea tool"
11237
11238 test_154a() {
11239         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11240         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11241                 { skip "Need MDS version at least 2.2.51"; return 0; }
11242         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
11243         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11244
11245         cp /etc/hosts $DIR/$tfile
11246
11247         fid=$($LFS path2fid $DIR/$tfile)
11248         rc=$?
11249         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11250
11251         dot_lustre_fid_permission_check "$fid" $DIR ||
11252                 error "dot lustre permission check $fid failed"
11253
11254         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11255
11256         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11257
11258         touch $MOUNT/.lustre/file &&
11259                 error "creation is not allowed under .lustre"
11260
11261         mkdir $MOUNT/.lustre/dir &&
11262                 error "mkdir is not allowed under .lustre"
11263
11264         rm -rf $DIR/$tfile
11265 }
11266 run_test 154a "Open-by-FID"
11267
11268 test_154b() {
11269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11270         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11271                 { skip "Need MDS version at least 2.2.51"; return 0; }
11272         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11273
11274         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11275
11276         local remote_dir=$DIR/$tdir/remote_dir
11277         local MDTIDX=1
11278         local rc=0
11279
11280         mkdir -p $DIR/$tdir
11281         $LFS mkdir -i $MDTIDX $remote_dir ||
11282                 error "create remote directory failed"
11283
11284         cp /etc/hosts $remote_dir/$tfile
11285
11286         fid=$($LFS path2fid $remote_dir/$tfile)
11287         rc=$?
11288         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11289
11290         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11291                 error "dot lustre permission check $fid failed"
11292         rm -rf $DIR/$tdir
11293 }
11294 run_test 154b "Open-by-FID for remote directory"
11295
11296 test_154c() {
11297         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11298                 skip "Need MDS version at least 2.4.1" && return
11299
11300         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11301         local FID1=$($LFS path2fid $DIR/$tfile.1)
11302         local FID2=$($LFS path2fid $DIR/$tfile.2)
11303         local FID3=$($LFS path2fid $DIR/$tfile.3)
11304
11305         local N=1
11306         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11307                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11308                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11309                 local want=FID$N
11310                 [ "$FID" = "${!want}" ] ||
11311                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11312                 N=$((N + 1))
11313         done
11314
11315         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11316         do
11317                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11318                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11319                 N=$((N + 1))
11320         done
11321 }
11322 run_test 154c "lfs path2fid and fid2path multiple arguments"
11323
11324 test_154d() {
11325         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11326         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11327                 skip "Need MDS version at least 2.5.53" && return
11328
11329         if remote_mds; then
11330                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11331         else
11332                 nid="0@lo"
11333         fi
11334         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11335         local fd
11336         local cmd
11337
11338         rm -f $DIR/$tfile
11339         touch $DIR/$tfile
11340
11341         local fid=$($LFS path2fid $DIR/$tfile)
11342         # Open the file
11343         fd=$(free_fd)
11344         cmd="exec $fd<$DIR/$tfile"
11345         eval $cmd
11346         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11347         echo "$fid_list" | grep "$fid"
11348         rc=$?
11349
11350         cmd="exec $fd>/dev/null"
11351         eval $cmd
11352         if [ $rc -ne 0 ]; then
11353                 error "FID $fid not found in open files list $fid_list"
11354         fi
11355 }
11356 run_test 154d "Verify open file fid"
11357
11358 test_154e()
11359 {
11360         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11361                 skip "Need MDS version at least 2.6.50" && return
11362
11363         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11364                 error ".lustre returned by readdir"
11365         fi
11366 }
11367 run_test 154e ".lustre is not returned by readdir"
11368
11369 test_154f() {
11370         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11371         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11372         test_mkdir -p -c1 $DIR/$tdir/d
11373         # test dirs inherit from its stripe
11374         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11375         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11376         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11377         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11378         touch $DIR/f
11379
11380         # get fid of parents
11381         local FID0=$($LFS path2fid $DIR/$tdir/d)
11382         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11383         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11384         local FID3=$($LFS path2fid $DIR)
11385
11386         # check that path2fid --parents returns expected <parent_fid>/name
11387         # 1) test for a directory (single parent)
11388         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11389         [ "$parent" == "$FID0/foo1" ] ||
11390                 error "expected parent: $FID0/foo1, got: $parent"
11391
11392         # 2) test for a file with nlink > 1 (multiple parents)
11393         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11394         echo "$parent" | grep -F "$FID1/$tfile" ||
11395                 error "$FID1/$tfile not returned in parent list"
11396         echo "$parent" | grep -F "$FID2/link" ||
11397                 error "$FID2/link not returned in parent list"
11398
11399         # 3) get parent by fid
11400         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11401         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11402         echo "$parent" | grep -F "$FID1/$tfile" ||
11403                 error "$FID1/$tfile not returned in parent list (by fid)"
11404         echo "$parent" | grep -F "$FID2/link" ||
11405                 error "$FID2/link not returned in parent list (by fid)"
11406
11407         # 4) test for entry in root directory
11408         parent=$($LFS path2fid --parents $DIR/f)
11409         echo "$parent" | grep -F "$FID3/f" ||
11410                 error "$FID3/f not returned in parent list"
11411
11412         # 5) test it on root directory
11413         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11414                 error "$MOUNT should not have parents"
11415
11416         # enable xattr caching and check that linkea is correctly updated
11417         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11418         save_lustre_params client "llite.*.xattr_cache" > $save
11419         lctl set_param llite.*.xattr_cache 1
11420
11421         # 6.1) linkea update on rename
11422         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11423
11424         # get parents by fid
11425         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11426         # foo1 should no longer be returned in parent list
11427         echo "$parent" | grep -F "$FID1" &&
11428                 error "$FID1 should no longer be in parent list"
11429         # the new path should appear
11430         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11431                 error "$FID2/$tfile.moved is not in parent list"
11432
11433         # 6.2) linkea update on unlink
11434         rm -f $DIR/$tdir/d/foo2/link
11435         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11436         # foo2/link should no longer be returned in parent list
11437         echo "$parent" | grep -F "$FID2/link" &&
11438                 error "$FID2/link should no longer be in parent list"
11439         true
11440
11441         rm -f $DIR/f
11442         restore_lustre_params < $save
11443         rm -f $save
11444 }
11445 run_test 154f "get parent fids by reading link ea"
11446
11447 test_154g()
11448 {
11449         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11450            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11451                 { skip "Need MDS version at least 2.6.92"; return 0; }
11452         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11453
11454         mkdir -p $DIR/$tdir
11455         llapi_fid_test -d $DIR/$tdir
11456 }
11457 run_test 154g "various llapi FID tests"
11458
11459 test_155_small_load() {
11460     local temp=$TMP/$tfile
11461     local file=$DIR/$tfile
11462
11463     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11464         error "dd of=$temp bs=6096 count=1 failed"
11465     cp $temp $file
11466     cancel_lru_locks $OSC
11467     cmp $temp $file || error "$temp $file differ"
11468
11469     $TRUNCATE $temp 6000
11470     $TRUNCATE $file 6000
11471     cmp $temp $file || error "$temp $file differ (truncate1)"
11472
11473     echo "12345" >>$temp
11474     echo "12345" >>$file
11475     cmp $temp $file || error "$temp $file differ (append1)"
11476
11477     echo "12345" >>$temp
11478     echo "12345" >>$file
11479     cmp $temp $file || error "$temp $file differ (append2)"
11480
11481     rm -f $temp $file
11482     true
11483 }
11484
11485 test_155_big_load() {
11486     remote_ost_nodsh && skip "remote OST with nodsh" && return
11487     local temp=$TMP/$tfile
11488     local file=$DIR/$tfile
11489
11490     free_min_max
11491     local cache_size=$(do_facet ost$((MAXI+1)) \
11492         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11493     local large_file_size=$((cache_size * 2))
11494
11495     echo "OSS cache size: $cache_size KB"
11496     echo "Large file size: $large_file_size KB"
11497
11498     [ $MAXV -le $large_file_size ] && \
11499         skip_env "max available OST size needs > $large_file_size KB" && \
11500         return 0
11501
11502     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11503
11504     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
11505         error "dd of=$temp bs=$large_file_size count=1k failed"
11506     cp $temp $file
11507     ls -lh $temp $file
11508     cancel_lru_locks osc
11509     cmp $temp $file || error "$temp $file differ"
11510
11511     rm -f $temp $file
11512     true
11513 }
11514
11515 save_writethrough() {
11516         local facets=$(get_facets OST)
11517
11518         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
11519         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
11520 }
11521
11522 test_155a() {
11523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11524         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11525         save_writethrough $p
11526
11527         set_cache read on
11528         set_cache writethrough on
11529         test_155_small_load
11530         restore_lustre_params < $p
11531         rm -f $p
11532 }
11533 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11534
11535 test_155b() {
11536         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11537         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11538         save_writethrough $p
11539
11540         set_cache read on
11541         set_cache writethrough off
11542         test_155_small_load
11543         restore_lustre_params < $p
11544         rm -f $p
11545 }
11546 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11547
11548 test_155c() {
11549         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11550         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11551         save_writethrough $p
11552
11553         set_cache read off
11554         set_cache writethrough on
11555         test_155_small_load
11556         restore_lustre_params < $p
11557         rm -f $p
11558 }
11559 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11560
11561 test_155d() {
11562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11563         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11564         save_writethrough $p
11565
11566         set_cache read off
11567         set_cache writethrough off
11568         test_155_small_load
11569         restore_lustre_params < $p
11570         rm -f $p
11571 }
11572 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11573
11574 test_155e() {
11575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11576         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11577         save_writethrough $p
11578
11579         set_cache read on
11580         set_cache writethrough on
11581         test_155_big_load
11582         restore_lustre_params < $p
11583         rm -f $p
11584 }
11585 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11586
11587 test_155f() {
11588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11589         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11590         save_writethrough $p
11591
11592         set_cache read on
11593         set_cache writethrough off
11594         test_155_big_load
11595         restore_lustre_params < $p
11596         rm -f $p
11597 }
11598 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11599
11600 test_155g() {
11601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11602         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11603         save_writethrough $p
11604
11605         set_cache read off
11606         set_cache writethrough on
11607         test_155_big_load
11608         restore_lustre_params < $p
11609         rm -f $p
11610 }
11611 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11612
11613 test_155h() {
11614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11615         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11616         save_writethrough $p
11617
11618         set_cache read off
11619         set_cache writethrough off
11620         test_155_big_load
11621         restore_lustre_params < $p
11622         rm -f $p
11623 }
11624 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11625
11626 test_156() {
11627         remote_ost_nodsh && skip "remote OST with nodsh" && return
11628         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11629         local CPAGES=3
11630         local BEFORE
11631         local AFTER
11632         local file="$DIR/$tfile"
11633         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11634
11635         [ "$(facet_fstype ost1)" = "zfs" -a \
11636            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
11637                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
11638                 return
11639
11640         save_writethrough $p
11641         roc_hit_init
11642
11643         log "Turn on read and write cache"
11644         set_cache read on
11645         set_cache writethrough on
11646
11647         log "Write data and read it back."
11648         log "Read should be satisfied from the cache."
11649         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11650         BEFORE=$(roc_hit)
11651         cancel_lru_locks osc
11652         cat $file >/dev/null
11653         AFTER=$(roc_hit)
11654         if ! let "AFTER - BEFORE == CPAGES"; then
11655                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11656         else
11657                 log "cache hits:: before: $BEFORE, after: $AFTER"
11658         fi
11659
11660         log "Read again; it should be satisfied from the cache."
11661         BEFORE=$AFTER
11662         cancel_lru_locks osc
11663         cat $file >/dev/null
11664         AFTER=$(roc_hit)
11665         if ! let "AFTER - BEFORE == CPAGES"; then
11666                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11667         else
11668                 log "cache hits:: before: $BEFORE, after: $AFTER"
11669         fi
11670
11671         log "Turn off the read cache and turn on the write cache"
11672         set_cache read off
11673         set_cache writethrough on
11674
11675         log "Read again; it should be satisfied from the cache."
11676         BEFORE=$(roc_hit)
11677         cancel_lru_locks osc
11678         cat $file >/dev/null
11679         AFTER=$(roc_hit)
11680         if ! let "AFTER - BEFORE == CPAGES"; then
11681                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11682         else
11683                 log "cache hits:: before: $BEFORE, after: $AFTER"
11684         fi
11685
11686         log "Read again; it should not be satisfied from the cache."
11687         BEFORE=$AFTER
11688         cancel_lru_locks osc
11689         cat $file >/dev/null
11690         AFTER=$(roc_hit)
11691         if ! let "AFTER - BEFORE == 0"; then
11692                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11693         else
11694                 log "cache hits:: before: $BEFORE, after: $AFTER"
11695         fi
11696
11697         log "Write data and read it back."
11698         log "Read should be satisfied from the cache."
11699         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11700         BEFORE=$(roc_hit)
11701         cancel_lru_locks osc
11702         cat $file >/dev/null
11703         AFTER=$(roc_hit)
11704         if ! let "AFTER - BEFORE == CPAGES"; then
11705                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11706         else
11707                 log "cache hits:: before: $BEFORE, after: $AFTER"
11708         fi
11709
11710         log "Read again; it should not be satisfied from the cache."
11711         BEFORE=$AFTER
11712         cancel_lru_locks osc
11713         cat $file >/dev/null
11714         AFTER=$(roc_hit)
11715         if ! let "AFTER - BEFORE == 0"; then
11716                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11717         else
11718                 log "cache hits:: before: $BEFORE, after: $AFTER"
11719         fi
11720
11721         log "Turn off read and write cache"
11722         set_cache read off
11723         set_cache writethrough off
11724
11725         log "Write data and read it back"
11726         log "It should not be satisfied from the cache."
11727         rm -f $file
11728         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11729         cancel_lru_locks osc
11730         BEFORE=$(roc_hit)
11731         cat $file >/dev/null
11732         AFTER=$(roc_hit)
11733         if ! let "AFTER - BEFORE == 0"; then
11734                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11735         else
11736                 log "cache hits:: before: $BEFORE, after: $AFTER"
11737         fi
11738
11739         log "Turn on the read cache and turn off the write cache"
11740         set_cache read on
11741         set_cache writethrough off
11742
11743         log "Write data and read it back"
11744         log "It should not be satisfied from the cache."
11745         rm -f $file
11746         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11747         BEFORE=$(roc_hit)
11748         cancel_lru_locks osc
11749         cat $file >/dev/null
11750         AFTER=$(roc_hit)
11751         if ! let "AFTER - BEFORE == 0"; then
11752                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11753         else
11754                 log "cache hits:: before: $BEFORE, after: $AFTER"
11755         fi
11756
11757         log "Read again; it should be satisfied from the cache."
11758         BEFORE=$(roc_hit)
11759         cancel_lru_locks osc
11760         cat $file >/dev/null
11761         AFTER=$(roc_hit)
11762         if ! let "AFTER - BEFORE == CPAGES"; then
11763                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11764         else
11765                 log "cache hits:: before: $BEFORE, after: $AFTER"
11766         fi
11767
11768         restore_lustre_params < $p
11769         rm -f $p $file
11770 }
11771 run_test 156 "Verification of tunables"
11772
11773 test_160a() {
11774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11775         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11776         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11777                 { skip "Need MDS version at least 2.2.0"; return; }
11778
11779         changelog_register || error "changelog_register failed"
11780         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
11781         changelog_users $SINGLEMDS | grep -q $cl_user ||
11782                 error "User $cl_user not found in changelog_users"
11783
11784         # change something
11785         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11786         changelog_clear 0 || error "changelog_clear failed"
11787         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
11788         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
11789         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11790         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11791         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11792         rm $DIR/$tdir/pics/desktop.jpg
11793
11794         changelog_dump | tail -10
11795
11796         echo "verifying changelog mask"
11797         changelog_chmask "-MKDIR"
11798         changelog_chmask "-CLOSE"
11799
11800         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
11801         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
11802
11803         changelog_chmask "+MKDIR"
11804         changelog_chmask "+CLOSE"
11805
11806         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
11807         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
11808
11809         changelog_dump | tail -10
11810         MKDIRS=$(changelog_dump | grep -c "MKDIR")
11811         CLOSES=$(changelog_dump | grep -c "CLOSE")
11812         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
11813         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
11814
11815         # verify contents
11816         echo "verifying target fid"
11817         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
11818         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
11819         [ "$fidc" == "$fidf" ] ||
11820                 error "changelog '$tfile' fid $fidc != file fid $fidf"
11821         echo "verifying parent fid"
11822         # The FID returned from the Changelog may be the directory shard on
11823         # a different MDT, and not the FID returned by path2fid on the parent.
11824         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
11825         # since this is what will matter when recreating this file in the tree.
11826         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
11827         local pathp=$($LFS fid2path $MOUNT "$fidp")
11828         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
11829                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
11830
11831         echo "getting records for $cl_user"
11832         changelog_users $SINGLEMDS
11833         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
11834         local nclr=3
11835         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
11836                 error "changelog_clear failed"
11837         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
11838         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
11839         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
11840                 error "user index expect $user_rec1 + $nclr != $user_rec2"
11841
11842         local min0_rec=$(changelog_users $SINGLEMDS |
11843                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
11844         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
11845                           awk '{ print $1; exit; }')
11846
11847         changelog_dump | tail -n 5
11848         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
11849         [ $first_rec == $((min0_rec + 1)) ] ||
11850                 error "first index should be $min0_rec + 1 not $first_rec"
11851
11852         # LU-3446 changelog index reset on MDT restart
11853         local cur_rec1=$(changelog_users $SINGLEMDS |
11854                          awk '/^current.index:/ { print $NF }')
11855         changelog_clear 0 ||
11856                 error "clear all changelog records for $cl_user failed"
11857         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
11858         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
11859                 error "Fail to start $SINGLEMDS"
11860         local cur_rec2=$(changelog_users $SINGLEMDS |
11861                          awk '/^current.index:/ { print $NF }')
11862         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
11863         [ $cur_rec1 == $cur_rec2 ] ||
11864                 error "current index should be $cur_rec1 not $cur_rec2"
11865
11866         echo "verifying users from this test are deregistered"
11867         changelog_deregister || error "changelog_deregister failed"
11868         changelog_users $SINGLEMDS | grep -q $cl_user &&
11869                 error "User '$cl_user' still in changelog_users"
11870
11871         # lctl get_param -n mdd.*.changelog_users
11872         # current index: 144
11873         # ID    index (idle seconds)
11874         # cl3   144 (2)
11875         if ! changelog_users $SINGLEMDS | grep "^cl"; then
11876                 # this is the normal case where all users were deregistered
11877                 # make sure no new records are added when no users are present
11878                 local last_rec1=$(changelog_users $SINGLEMDS |
11879                                   awk '/^current.index:/ { print $NF }')
11880                 touch $DIR/$tdir/chloe
11881                 local last_rec2=$(changelog_users $SINGLEMDS |
11882                                   awk '/^current.index:/ { print $NF }')
11883                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
11884                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
11885         else
11886                 # any changelog users must be leftovers from a previous test
11887                 changelog_users $SINGLEMDS
11888                 echo "other changelog users; can't verify off"
11889         fi
11890 }
11891 run_test 160a "changelog sanity"
11892
11893 test_160b() { # LU-3587
11894         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11895         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11896         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11897                 { skip "Need MDS version at least 2.2.0"; return; }
11898
11899         changelog_register || error "changelog_register failed"
11900         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
11901         changelog_users $SINGLEMDS | grep -q $cl_user ||
11902                 error "User '$cl_user' not found in changelog_users"
11903
11904         local longname1=$(str_repeat a 255)
11905         local longname2=$(str_repeat b 255)
11906
11907         cd $DIR
11908         echo "creating very long named file"
11909         touch $longname1 || error "create of '$longname1' failed"
11910         echo "renaming very long named file"
11911         mv $longname1 $longname2
11912
11913         changelog_dump | grep RENME | tail -n 5
11914         rm -f $longname2
11915 }
11916 run_test 160b "Verify that very long rename doesn't crash in changelog"
11917
11918 test_160c() {
11919         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11920
11921         local rc=0
11922         local server_version=$(lustre_version_code $SINGLEMDS)
11923
11924         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11925                 [[ $server_version -gt $(version_code 2.5.1) &&
11926                    $server_version -lt $(version_code 2.5.50) ]] ||
11927                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11929
11930         # Registration step
11931         changelog_register || error "changelog_register failed"
11932
11933         rm -rf $DIR/$tdir
11934         mkdir -p $DIR/$tdir
11935         $MCREATE $DIR/$tdir/foo_160c
11936         changelog_chmask "-TRUNC"
11937         $TRUNCATE $DIR/$tdir/foo_160c 200
11938         changelog_chmask "+TRUNC"
11939         $TRUNCATE $DIR/$tdir/foo_160c 199
11940         changelog_dump | tail -n 5
11941         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
11942         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
11943 }
11944 run_test 160c "verify that changelog log catch the truncate event"
11945
11946 test_160d() {
11947         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11948         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11949
11950         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
11951                 { skip "Need MDS version at least 2.7.60+"; return; }
11952         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11953
11954         # Registration step
11955         changelog_register || error "changelog_register failed"
11956
11957         mkdir -p $DIR/$tdir/migrate_dir
11958         changelog_clear 0 || error "changelog_clear failed"
11959
11960         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11961         changelog_dump | tail -n 5
11962         local migrates=$(changelog_dump | grep -c "MIGRT")
11963         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
11964 }
11965 run_test 160d "verify that changelog log catch the migrate event"
11966
11967 test_160e() {
11968         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11969
11970         # Create a user
11971         changelog_register || error "changelog_register failed"
11972
11973         # Delete a future user (expect fail)
11974         local MDT0=$(facet_svc $SINGLEMDS)
11975         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
11976         local rc=$?
11977
11978         if [ $rc -eq 0 ]; then
11979                 error "Deleted non-existant user cl77"
11980         elif [ $rc -ne 2 ]; then
11981                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
11982         fi
11983
11984         # Clear to a bad index (1 billion should be safe)
11985         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
11986         rc=$?
11987
11988         if [ $rc -eq 0 ]; then
11989                 error "Successfully cleared to invalid CL index"
11990         elif [ $rc -ne 22 ]; then
11991                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11992         fi
11993 }
11994 run_test 160e "changelog negative testing (should return errors)"
11995
11996 test_160f() {
11997         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11998         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
11999                 { skip "Need MDS version at least 2.10.56"; return 0; }
12000
12001         local mdts=$(comma_list $(mdts_nodes))
12002
12003         # Create a user
12004         changelog_register || error "first changelog_register failed"
12005         changelog_register || error "second changelog_register failed"
12006         local cl_users=(${CL_USERS[$SINGLEMDS]})
12007         local cl_user1="${cl_users[0]}"
12008         local cl_user2="${cl_users[1]}"
12009
12010         # generate some changelog records to accumulate on each MDT
12011         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12012         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12013                 error "create $DIR/$tdir/$tfile failed"
12014
12015         # check changelogs have been generated
12016         nbcl=$(changelog_dump | wc -l)
12017         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12018
12019         # changelog_gc=1 should be set by default
12020         for param in "changelog_max_idle_time=10" \
12021                      "changelog_min_gc_interval=2" \
12022                      "changelog_min_free_cat_entries=3"; do
12023                 local MDT0=$(facet_svc $SINGLEMDS)
12024                 local var="${param%=*}"
12025                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12026
12027                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12028                 do_nodes $mdts $LCTL set_param mdd.*.$param
12029         done
12030
12031         # simulate changelog catalog almost full
12032         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12033         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12034
12035         sleep 6
12036         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user1)
12037         [ -n "$user_rec1" ] ||
12038                 error "User $cl_user1 not found in changelog_users"
12039         __changelog_clear $SINGLEMDS $cl_user1 +2
12040         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user1)
12041         [ -n "$user_rec2" ] ||
12042                 error "User $cl_user1 not found in changelog_users"
12043         echo "verifying user clear: $user_rec1 + 2 == $user_rec2"
12044         [ $((user_rec1 + 2)) == $user_rec2 ] ||
12045                 error "user index expected $user_rec1 + 2, but is $user_rec2"
12046         sleep 5
12047
12048         # generate one more changelog to trigger fail_loc
12049         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
12050
12051         # ensure gc thread is done
12052         wait_update_facet $SINGLEMDS \
12053                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
12054
12055         # check user still registered
12056         changelog_users $SINGLEMDS | grep -q "$cl_user1" ||
12057                 error "User $cl_user1 not found in changelog_users"
12058         # check user2 unregistered
12059         changelog_users $SINGLEMDS | grep -q "$cl_user2" &&
12060                 error "User $cl_user2 still found in changelog_users"
12061
12062         # check changelogs are present and starting at $user_rec2 + 1
12063         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12064                           awk '{ print $1; exit; }')
12065
12066         echo "verifying min purge: $user_rec2 + 1 == $first_rec"
12067         [ $((user_rec2 + 1)) == $first_rec ] ||
12068                 error "first index should be $user_rec2 + 1, but is $first_rec"
12069 }
12070 run_test 160f "changelog garbage collect (timestamped users)"
12071
12072 test_160g() {
12073         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12074         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12075                 { skip "Need MDS version at least 2.10.56"; return 0; }
12076
12077         local mdts=$(comma_list $(mdts_nodes))
12078
12079         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12080         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12081
12082         # Create a user
12083         changelog_register || error "first changelog_register failed"
12084         changelog_register || error "second changelog_register failed"
12085         local cl_users=(${CL_USERS[$SINGLEMDS]})
12086         local cl_user1="${cl_users[0]}"
12087         local cl_user2="${cl_users[1]}"
12088
12089         # generate some changelog records to accumulate on each MDT
12090         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12091         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12092                 error "create $DIR/$tdir/$tfile failed"
12093
12094         # check changelogs have been generated
12095         nbcl=$(changelog_dump | wc -l)
12096         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12097
12098         # changelog_gc=1 should be set by default
12099         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12100                      "changelog_min_gc_interval=2" \
12101                      "changelog_min_free_cat_entries=3"; do
12102                 local MDT0=$(facet_svc $SINGLEMDS)
12103                 local var="${param%=*}"
12104                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12105
12106                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12107                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12108                         error "unable to set mdd.*.$param"
12109         done
12110
12111         # simulate changelog catalog almost full
12112         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12113         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12114
12115         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user1)
12116
12117         __changelog_clear $SINGLEMDS $cl_user1 +3
12118
12119         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user1)
12120
12121         echo "verifying user clear: $user_rec1 + 3 == $user_rec2"
12122         [ $((user_rec1 + 3)) == $user_rec2 ] ||
12123                 error "user index expected $user_rec1 + 3, but is $user_rec2"
12124
12125         # generate one more changelog to trigger fail_loc
12126         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
12127
12128         # ensure gc thread is done
12129         wait_update_facet $SINGLEMDS \
12130                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
12131
12132         # check user still registered
12133         [ -n "$(changelog_user_rec $SINGLEMDS $cl_user1)" ] ||
12134                 error "User $cl_user1 not found in changelog_users"
12135         # check user2 unregistered
12136         [ -z "$(changelog_user_rec $SINGLEMDS $cl_user2)" ] ||
12137                 error "User $cl_user2 still found in changelog_users"
12138
12139         # check changelogs are present and starting at $user_rec2 + 1
12140         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12141                           awk '{ print $1; exit; }')
12142
12143         echo "verifying min purge: $user_rec2 + 1 == $first_rec"
12144         [ $((user_rec2 + 1)) == $first_rec ] ||
12145                 error "first index should be $user_rec2 + 1, but is $first_rec"
12146 }
12147 run_test 160g "changelog garbage collect (old users)"
12148
12149 test_161a() {
12150         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12151         test_mkdir -c1 $DIR/$tdir
12152         cp /etc/hosts $DIR/$tdir/$tfile
12153         test_mkdir -c1 $DIR/$tdir/foo1
12154         test_mkdir -c1 $DIR/$tdir/foo2
12155         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12156         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12157         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12158         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12159         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12160         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12161                 $LFS fid2path $DIR $FID
12162                 error "bad link ea"
12163         fi
12164         # middle
12165         rm $DIR/$tdir/foo2/zachary
12166         # last
12167         rm $DIR/$tdir/foo2/thor
12168         # first
12169         rm $DIR/$tdir/$tfile
12170         # rename
12171         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12172         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12173                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12174         rm $DIR/$tdir/foo2/maggie
12175
12176         # overflow the EA
12177         local longname=$tfile.avg_len_is_thirty_two_
12178         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12179                 error_noexit 'failed to unlink many hardlinks'" EXIT
12180         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12181                 error "failed to hardlink many files"
12182         links=$($LFS fid2path $DIR $FID | wc -l)
12183         echo -n "${links}/1000 links in link EA"
12184         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12185 }
12186 run_test 161a "link ea sanity"
12187
12188 test_161b() {
12189         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12190         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
12191         local MDTIDX=1
12192         local remote_dir=$DIR/$tdir/remote_dir
12193
12194         mkdir -p $DIR/$tdir
12195         $LFS mkdir -i $MDTIDX $remote_dir ||
12196                 error "create remote directory failed"
12197
12198         cp /etc/hosts $remote_dir/$tfile
12199         mkdir -p $remote_dir/foo1
12200         mkdir -p $remote_dir/foo2
12201         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12202         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12203         ln $remote_dir/$tfile $remote_dir/foo1/luna
12204         ln $remote_dir/$tfile $remote_dir/foo2/thor
12205
12206         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12207                      tr -d ']')
12208         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12209                 $LFS fid2path $DIR $FID
12210                 error "bad link ea"
12211         fi
12212         # middle
12213         rm $remote_dir/foo2/zachary
12214         # last
12215         rm $remote_dir/foo2/thor
12216         # first
12217         rm $remote_dir/$tfile
12218         # rename
12219         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12220         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12221         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12222                 $LFS fid2path $DIR $FID
12223                 error "bad link rename"
12224         fi
12225         rm $remote_dir/foo2/maggie
12226
12227         # overflow the EA
12228         local longname=filename_avg_len_is_thirty_two_
12229         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12230                 error "failed to hardlink many files"
12231         links=$($LFS fid2path $DIR $FID | wc -l)
12232         echo -n "${links}/1000 links in link EA"
12233         [[ ${links} -gt 60 ]] ||
12234                 error "expected at least 60 links in link EA"
12235         unlinkmany $remote_dir/foo2/$longname 1000 ||
12236         error "failed to unlink many hardlinks"
12237 }
12238 run_test 161b "link ea sanity under remote directory"
12239
12240 test_161c() {
12241         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12243         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12244                 skip "Need MDS version at least 2.1.5" && return
12245
12246         # define CLF_RENAME_LAST 0x0001
12247         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12248         changelog_register || error "changelog_register failed"
12249
12250         rm -rf $DIR/$tdir
12251         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12252         touch $DIR/$tdir/foo_161c
12253         touch $DIR/$tdir/bar_161c
12254         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12255         changelog_dump | grep RENME | tail -n 5
12256         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12257         changelog_clear 0 || error "changelog_clear failed"
12258         if [ x$flags != "x0x1" ]; then
12259                 error "flag $flags is not 0x1"
12260         fi
12261
12262         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12263         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12264         touch $DIR/$tdir/foo_161c
12265         touch $DIR/$tdir/bar_161c
12266         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12267         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12268         changelog_dump | grep RENME | tail -n 5
12269         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12270         changelog_clear 0 || error "changelog_clear failed"
12271         if [ x$flags != "x0x0" ]; then
12272                 error "flag $flags is not 0x0"
12273         fi
12274         echo "rename overwrite a target having nlink > 1," \
12275                 "changelog record has flags of $flags"
12276
12277         # rename doesn't overwrite a target (changelog flag 0x0)
12278         touch $DIR/$tdir/foo_161c
12279         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12280         changelog_dump | grep RENME | tail -n 5
12281         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12282         changelog_clear 0 || error "changelog_clear failed"
12283         if [ x$flags != "x0x0" ]; then
12284                 error "flag $flags is not 0x0"
12285         fi
12286         echo "rename doesn't overwrite a target," \
12287                 "changelog record has flags of $flags"
12288
12289         # define CLF_UNLINK_LAST 0x0001
12290         # unlink a file having nlink = 1 (changelog flag 0x1)
12291         rm -f $DIR/$tdir/foo2_161c
12292         changelog_dump | grep UNLNK | tail -n 5
12293         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12294         changelog_clear 0 || error "changelog_clear failed"
12295         if [ x$flags != "x0x1" ]; then
12296                 error "flag $flags is not 0x1"
12297         fi
12298         echo "unlink a file having nlink = 1," \
12299                 "changelog record has flags of $flags"
12300
12301         # unlink a file having nlink > 1 (changelog flag 0x0)
12302         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12303         rm -f $DIR/$tdir/foobar_161c
12304         changelog_dump | grep UNLNK | tail -n 5
12305         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12306         changelog_clear 0 || error "changelog_clear failed"
12307         if [ x$flags != "x0x0" ]; then
12308                 error "flag $flags is not 0x0"
12309         fi
12310         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
12311 }
12312 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12313
12314 test_161d() {
12315         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12316
12317         local pid
12318         local fid
12319
12320         changelog_register || error "changelog_register failed"
12321
12322         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12323         # interfer with $MOUNT/.lustre/fid/ access
12324         mkdir $DIR/$tdir
12325         [[ $? -eq 0 ]] || error "mkdir failed"
12326
12327         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12328         $LCTL set_param fail_loc=0x8000140c
12329         # 5s pause
12330         $LCTL set_param fail_val=5
12331
12332         # create file
12333         echo foofoo > $DIR/$tdir/$tfile &
12334         pid=$!
12335
12336         # wait for create to be delayed
12337         sleep 2
12338
12339         ps -p $pid
12340         [[ $? -eq 0 ]] || error "create should be blocked"
12341
12342         local tempfile=$(mktemp)
12343         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
12344         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12345         # some delay may occur during ChangeLog publishing and file read just
12346         # above, that could allow file write to happen finally
12347         [[ -s $tempfile ]] && echo "file should be empty"
12348
12349         $LCTL set_param fail_loc=0
12350
12351         wait $pid
12352         [[ $? -eq 0 ]] || error "create failed"
12353 }
12354 run_test 161d "create with concurrent .lustre/fid access"
12355
12356 check_path() {
12357         local expected="$1"
12358         shift
12359         local fid="$2"
12360
12361         local path
12362         path=$($LFS fid2path "$@")
12363         local rc=$?
12364
12365         if [ $rc -ne 0 ]; then
12366                 error "path looked up of '$expected' failed: rc=$rc"
12367         elif [ "$path" != "$expected" ]; then
12368                 error "path looked up '$path' instead of '$expected'"
12369         else
12370                 echo "FID '$fid' resolves to path '$path' as expected"
12371         fi
12372 }
12373
12374 test_162a() { # was test_162
12375         test_mkdir -p -c1 $DIR/$tdir/d2
12376         touch $DIR/$tdir/d2/$tfile
12377         touch $DIR/$tdir/d2/x1
12378         touch $DIR/$tdir/d2/x2
12379         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
12380         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
12381         # regular file
12382         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
12383         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
12384
12385         # softlink
12386         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
12387         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
12388         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
12389
12390         # softlink to wrong file
12391         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
12392         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
12393         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
12394
12395         # hardlink
12396         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
12397         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
12398         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
12399         # fid2path dir/fsname should both work
12400         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
12401         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
12402
12403         # hardlink count: check that there are 2 links
12404         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
12405         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
12406
12407         # hardlink indexing: remove the first link
12408         rm $DIR/$tdir/d2/p/q/r/hlink
12409         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
12410 }
12411 run_test 162a "path lookup sanity"
12412
12413 test_162b() {
12414         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12415         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12416
12417         mkdir $DIR/$tdir
12418         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
12419                                 error "create striped dir failed"
12420
12421         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
12422                                         tail -n 1 | awk '{print $2}')
12423         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
12424
12425         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
12426         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
12427
12428         # regular file
12429         for ((i=0;i<5;i++)); do
12430                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
12431                         error "get fid for f$i failed"
12432                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
12433
12434                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
12435                         error "get fid for d$i failed"
12436                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
12437         done
12438
12439         return 0
12440 }
12441 run_test 162b "striped directory path lookup sanity"
12442
12443 # LU-4239: Verify fid2path works with paths 100 or more directories deep
12444 test_162c() {
12445         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
12446                 skip "Need MDS version at least 2.7.51" && return
12447         test_mkdir $DIR/$tdir.local
12448         test_mkdir $DIR/$tdir.remote
12449         local lpath=$tdir.local
12450         local rpath=$tdir.remote
12451
12452         for ((i = 0; i <= 101; i++)); do
12453                 lpath="$lpath/$i"
12454                 mkdir $DIR/$lpath
12455                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
12456                         error "get fid for local directory $DIR/$lpath failed"
12457                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
12458
12459                 rpath="$rpath/$i"
12460                 test_mkdir $DIR/$rpath
12461                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
12462                         error "get fid for remote directory $DIR/$rpath failed"
12463                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
12464         done
12465
12466         return 0
12467 }
12468 run_test 162c "fid2path works with paths 100 or more directories deep"
12469
12470 test_169() {
12471         # do directio so as not to populate the page cache
12472         log "creating a 10 Mb file"
12473         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12474         log "starting reads"
12475         dd if=$DIR/$tfile of=/dev/null bs=4096 &
12476         log "truncating the file"
12477         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12478         log "killing dd"
12479         kill %+ || true # reads might have finished
12480         echo "wait until dd is finished"
12481         wait
12482         log "removing the temporary file"
12483         rm -rf $DIR/$tfile || error "tmp file removal failed"
12484 }
12485 run_test 169 "parallel read and truncate should not deadlock"
12486
12487 test_170() {
12488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12489
12490         $LCTL clear     # bug 18514
12491         $LCTL debug_daemon start $TMP/${tfile}_log_good
12492         touch $DIR/$tfile
12493         $LCTL debug_daemon stop
12494         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
12495                 error "sed failed to read log_good"
12496
12497         $LCTL debug_daemon start $TMP/${tfile}_log_good
12498         rm -rf $DIR/$tfile
12499         $LCTL debug_daemon stop
12500
12501         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
12502                error "lctl df log_bad failed"
12503
12504         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12505         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12506
12507         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
12508         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
12509
12510         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
12511                 error "bad_line good_line1 good_line2 are empty"
12512
12513         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12514         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
12515         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
12516
12517         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
12518         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
12519         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
12520
12521         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
12522                 error "bad_line_new good_line_new are empty"
12523
12524         local expected_good=$((good_line1 + good_line2*2))
12525
12526         rm -f $TMP/${tfile}*
12527         # LU-231, short malformed line may not be counted into bad lines
12528         if [ $bad_line -ne $bad_line_new ] &&
12529                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
12530                 error "expected $bad_line bad lines, but got $bad_line_new"
12531                 return 1
12532         fi
12533
12534         if [ $expected_good -ne $good_line_new ]; then
12535                 error "expected $expected_good good lines, but got $good_line_new"
12536                 return 2
12537         fi
12538         true
12539 }
12540 run_test 170 "test lctl df to handle corrupted log ====================="
12541
12542 test_171() { # bug20592
12543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12544 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
12545         $LCTL set_param fail_loc=0x50e
12546         $LCTL set_param fail_val=3000
12547         multiop_bg_pause $DIR/$tfile O_s || true
12548         local MULTIPID=$!
12549         kill -USR1 $MULTIPID
12550         # cause log dump
12551         sleep 3
12552         wait $MULTIPID
12553         if dmesg | grep "recursive fault"; then
12554                 error "caught a recursive fault"
12555         fi
12556         $LCTL set_param fail_loc=0
12557         true
12558 }
12559 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
12560
12561 # it would be good to share it with obdfilter-survey/iokit-libecho code
12562 setup_obdecho_osc () {
12563         local rc=0
12564         local ost_nid=$1
12565         local obdfilter_name=$2
12566         echo "Creating new osc for $obdfilter_name on $ost_nid"
12567         # make sure we can find loopback nid
12568         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
12569
12570         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
12571                            ${obdfilter_name}_osc_UUID || rc=2; }
12572         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
12573                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
12574         return $rc
12575 }
12576
12577 cleanup_obdecho_osc () {
12578         local obdfilter_name=$1
12579         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
12580         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
12581         return 0
12582 }
12583
12584 obdecho_test() {
12585         local OBD=$1
12586         local node=$2
12587         local pages=${3:-64}
12588         local rc=0
12589         local id
12590
12591         local count=10
12592         local obd_size=$(get_obd_size $node $OBD)
12593         local page_size=$(get_page_size $node)
12594         if [[ -n "$obd_size" ]]; then
12595                 local new_count=$((obd_size / (pages * page_size / 1024)))
12596                 [[ $new_count -ge $count ]] || count=$new_count
12597         fi
12598
12599         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
12600         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
12601                            rc=2; }
12602         if [ $rc -eq 0 ]; then
12603             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
12604             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
12605         fi
12606         echo "New object id is $id"
12607         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
12608                            rc=4; }
12609         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
12610                            "test_brw $count w v $pages $id" || rc=4; }
12611         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
12612                            rc=4; }
12613         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
12614                                         "cleanup" || rc=5; }
12615         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
12616                                         "detach" || rc=6; }
12617         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
12618         return $rc
12619 }
12620
12621 test_180a() {
12622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12623         remote_ost_nodsh && skip "remote OST with nodsh" && return
12624         local rc=0
12625         local rmmod_local=0
12626
12627         if ! module_loaded obdecho; then
12628             load_module obdecho/obdecho
12629             rmmod_local=1
12630         fi
12631
12632         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
12633         local host=$(lctl get_param -n osc.$osc.import |
12634                              awk '/current_connection:/ {print $2}' )
12635         local target=$(lctl get_param -n osc.$osc.import |
12636                              awk '/target:/ {print $2}' )
12637         target=${target%_UUID}
12638
12639         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
12640         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
12641         [[ -n $target ]] && cleanup_obdecho_osc $target
12642         [ $rmmod_local -eq 1 ] && rmmod obdecho
12643         return $rc
12644 }
12645 run_test 180a "test obdecho on osc"
12646
12647 test_180b() {
12648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12649         remote_ost_nodsh && skip "remote OST with nodsh" && return
12650         local rc=0
12651         local rmmod_remote=0
12652
12653         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12654                 rmmod_remote=true || error "failed to load module obdecho"
12655         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
12656         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
12657         $rmmod_remote && do_facet ost1 "rmmod obdecho"
12658         return $rc
12659 }
12660 run_test 180b "test obdecho directly on obdfilter"
12661
12662 test_180c() { # LU-2598
12663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12664         remote_ost_nodsh && skip "remote OST with nodsh" && return
12665         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
12666                 skip "Need MDS version at least 2.4.0" && return
12667
12668         local rc=0
12669         local rmmod_remote=false
12670         local pages=16384 # 64MB bulk I/O RPC size
12671         local target
12672
12673         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12674                 rmmod_remote=true || error "failed to load module obdecho"
12675
12676         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4; exit; }')
12677         if [ -n "$target" ]; then
12678                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
12679         else
12680                 echo "there is no obdfilter target on ost1"
12681                 rc=2
12682         fi
12683         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
12684         return $rc
12685 }
12686 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
12687
12688 test_181() { # bug 22177
12689         test_mkdir $DIR/$tdir
12690         # create enough files to index the directory
12691         createmany -o $DIR/$tdir/foobar 4000
12692         # print attributes for debug purpose
12693         lsattr -d .
12694         # open dir
12695         multiop_bg_pause $DIR/$tdir D_Sc || return 1
12696         MULTIPID=$!
12697         # remove the files & current working dir
12698         unlinkmany $DIR/$tdir/foobar 4000
12699         rmdir $DIR/$tdir
12700         kill -USR1 $MULTIPID
12701         wait $MULTIPID
12702         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
12703         return 0
12704 }
12705 run_test 181 "Test open-unlinked dir ========================"
12706
12707 test_182() {
12708         local fcount=1000
12709         local tcount=10
12710
12711         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12712
12713         $LCTL set_param mdc.*.rpc_stats=clear
12714
12715         for (( i = 0; i < $tcount; i++ )) ; do
12716                 mkdir $DIR/$tdir/$i
12717         done
12718
12719         for (( i = 0; i < $tcount; i++ )) ; do
12720                 createmany -o $DIR/$tdir/$i/f- $fcount &
12721         done
12722         wait
12723
12724         for (( i = 0; i < $tcount; i++ )) ; do
12725                 unlinkmany $DIR/$tdir/$i/f- $fcount &
12726         done
12727         wait
12728
12729         $LCTL get_param mdc.*.rpc_stats
12730
12731         rm -rf $DIR/$tdir
12732 }
12733 run_test 182 "Test parallel modify metadata operations ================"
12734
12735 test_183() { # LU-2275
12736         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12737         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
12738                 skip "Need MDS version at least 2.3.56" && return
12739
12740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12741         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12742         echo aaa > $DIR/$tdir/$tfile
12743
12744 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
12745         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
12746
12747         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
12748         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
12749
12750         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
12751
12752         # Flush negative dentry cache
12753         touch $DIR/$tdir/$tfile
12754
12755         # We are not checking for any leaked references here, they'll
12756         # become evident next time we do cleanup with module unload.
12757         rm -rf $DIR/$tdir
12758 }
12759 run_test 183 "No crash or request leak in case of strange dispositions ========"
12760
12761 # test suite 184 is for LU-2016, LU-2017
12762 test_184a() {
12763         check_swap_layouts_support && return 0
12764
12765         dir0=$DIR/$tdir/$testnum
12766         test_mkdir -p -c1 $dir0
12767         ref1=/etc/passwd
12768         ref2=/etc/group
12769         file1=$dir0/f1
12770         file2=$dir0/f2
12771         $SETSTRIPE -c1 $file1
12772         cp $ref1 $file1
12773         $SETSTRIPE -c2 $file2
12774         cp $ref2 $file2
12775         gen1=$($GETSTRIPE -g $file1)
12776         gen2=$($GETSTRIPE -g $file2)
12777
12778         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
12779         gen=$($GETSTRIPE -g $file1)
12780         [[ $gen1 != $gen ]] ||
12781                 "Layout generation on $file1 does not change"
12782         gen=$($GETSTRIPE -g $file2)
12783         [[ $gen2 != $gen ]] ||
12784                 "Layout generation on $file2 does not change"
12785
12786         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
12787         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12788
12789         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
12790 }
12791 run_test 184a "Basic layout swap"
12792
12793 test_184b() {
12794         check_swap_layouts_support && return 0
12795
12796         dir0=$DIR/$tdir/$testnum
12797         mkdir -p $dir0 || error "creating dir $dir0"
12798         file1=$dir0/f1
12799         file2=$dir0/f2
12800         file3=$dir0/f3
12801         dir1=$dir0/d1
12802         dir2=$dir0/d2
12803         mkdir $dir1 $dir2
12804         $SETSTRIPE -c1 $file1
12805         $SETSTRIPE -c2 $file2
12806         $SETSTRIPE -c1 $file3
12807         chown $RUNAS_ID $file3
12808         gen1=$($GETSTRIPE -g $file1)
12809         gen2=$($GETSTRIPE -g $file2)
12810
12811         $LFS swap_layouts $dir1 $dir2 &&
12812                 error "swap of directories layouts should fail"
12813         $LFS swap_layouts $dir1 $file1 &&
12814                 error "swap of directory and file layouts should fail"
12815         $RUNAS $LFS swap_layouts $file1 $file2 &&
12816                 error "swap of file we cannot write should fail"
12817         $LFS swap_layouts $file1 $file3 &&
12818                 error "swap of file with different owner should fail"
12819         /bin/true # to clear error code
12820 }
12821 run_test 184b "Forbidden layout swap (will generate errors)"
12822
12823 test_184c() {
12824         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
12825         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
12826         check_swap_layouts_support && return 0
12827
12828         local dir0=$DIR/$tdir/$testnum
12829         mkdir -p $dir0 || error "creating dir $dir0"
12830
12831         local ref1=$dir0/ref1
12832         local ref2=$dir0/ref2
12833         local file1=$dir0/file1
12834         local file2=$dir0/file2
12835         # create a file large enough for the concurrent test
12836         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
12837         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
12838         echo "ref file size: ref1($(stat -c %s $ref1))," \
12839              "ref2($(stat -c %s $ref2))"
12840
12841         cp $ref2 $file2
12842         dd if=$ref1 of=$file1 bs=16k &
12843         local DD_PID=$!
12844
12845         # Make sure dd starts to copy file
12846         while [ ! -f $file1 ]; do sleep 0.1; done
12847
12848         $LFS swap_layouts $file1 $file2
12849         local rc=$?
12850         wait $DD_PID
12851         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12852         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12853
12854         # how many bytes copied before swapping layout
12855         local copied=$(stat -c %s $file2)
12856         local remaining=$(stat -c %s $ref1)
12857         remaining=$((remaining - copied))
12858         echo "Copied $copied bytes before swapping layout..."
12859
12860         cmp -n $copied $file1 $ref2 | grep differ &&
12861                 error "Content mismatch [0, $copied) of ref2 and file1"
12862         cmp -n $copied $file2 $ref1 ||
12863                 error "Content mismatch [0, $copied) of ref1 and file2"
12864         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12865                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12866
12867         # clean up
12868         rm -f $ref1 $ref2 $file1 $file2
12869 }
12870 run_test 184c "Concurrent write and layout swap"
12871
12872 test_184d() {
12873         check_swap_layouts_support && return 0
12874         [ -z "$(which getfattr 2>/dev/null)" ] &&
12875                 skip "no getfattr command" && return 0
12876
12877         local file1=$DIR/$tdir/$tfile-1
12878         local file2=$DIR/$tdir/$tfile-2
12879         local file3=$DIR/$tdir/$tfile-3
12880         local lovea1
12881         local lovea2
12882
12883         mkdir -p $DIR/$tdir
12884         touch $file1 || error "create $file1 failed"
12885         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12886                 error "create $file2 failed"
12887         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12888                 error "create $file3 failed"
12889         lovea1=$(get_layout_param $file1)
12890
12891         $LFS swap_layouts $file2 $file3 ||
12892                 error "swap $file2 $file3 layouts failed"
12893         $LFS swap_layouts $file1 $file2 ||
12894                 error "swap $file1 $file2 layouts failed"
12895
12896         lovea2=$(get_layout_param $file2)
12897         echo "$lovea1"
12898         echo "$lovea2"
12899         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12900
12901         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12902         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12903 }
12904 run_test 184d "allow stripeless layouts swap"
12905
12906 test_184e() {
12907         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12908                 { skip "Need MDS version at least 2.6.94"; return 0; }
12909         check_swap_layouts_support && return 0
12910         [ -z "$(which getfattr 2>/dev/null)" ] &&
12911                 skip "no getfattr command" && return 0
12912
12913         local file1=$DIR/$tdir/$tfile-1
12914         local file2=$DIR/$tdir/$tfile-2
12915         local file3=$DIR/$tdir/$tfile-3
12916         local lovea
12917
12918         mkdir -p $DIR/$tdir
12919         touch $file1 || error "create $file1 failed"
12920         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12921                 error "create $file2 failed"
12922         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12923                 error "create $file3 failed"
12924
12925         $LFS swap_layouts $file1 $file2 ||
12926                 error "swap $file1 $file2 layouts failed"
12927
12928         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12929         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12930
12931         echo 123 > $file1 || error "Should be able to write into $file1"
12932
12933         $LFS swap_layouts $file1 $file3 ||
12934                 error "swap $file1 $file3 layouts failed"
12935
12936         echo 123 > $file1 || error "Should be able to write into $file1"
12937
12938         rm -rf $file1 $file2 $file3
12939 }
12940 run_test 184e "Recreate layout after stripeless layout swaps"
12941
12942 test_185() { # LU-2441
12943         # LU-3553 - no volatile file support in old servers
12944         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12945                 { skip "Need MDS version at least 2.3.60"; return 0; }
12946
12947         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12948         touch $DIR/$tdir/spoo
12949         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12950         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12951                 error "cannot create/write a volatile file"
12952         [ "$FILESET" == "" ] &&
12953         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12954                 error "FID is still valid after close"
12955
12956         multiop_bg_pause $DIR/$tdir vVw4096_c
12957         local multi_pid=$!
12958
12959         local OLD_IFS=$IFS
12960         IFS=":"
12961         local fidv=($fid)
12962         IFS=$OLD_IFS
12963         # assume that the next FID for this client is sequential, since stdout
12964         # is unfortunately eaten by multiop_bg_pause
12965         local n=$((${fidv[1]} + 1))
12966         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12967         if [ "$FILESET" == "" ]; then
12968                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12969                         error "FID is missing before close"
12970         fi
12971         kill -USR1 $multi_pid
12972         # 1 second delay, so if mtime change we will see it
12973         sleep 1
12974         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12975         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12976 }
12977 run_test 185 "Volatile file support"
12978
12979 test_187a() {
12980         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12981         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12982                 skip "Need MDS version at least 2.3.0" && return
12983
12984         local dir0=$DIR/$tdir/$testnum
12985         mkdir -p $dir0 || error "creating dir $dir0"
12986
12987         local file=$dir0/file1
12988         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12989         local dv1=$($LFS data_version $file)
12990         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12991         local dv2=$($LFS data_version $file)
12992         [[ $dv1 != $dv2 ]] ||
12993                 error "data version did not change on write $dv1 == $dv2"
12994
12995         # clean up
12996         rm -f $file1
12997 }
12998 run_test 187a "Test data version change"
12999
13000 test_187b() {
13001         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13002         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13003                 skip "Need MDS version at least 2.3.0" && return
13004
13005         local dir0=$DIR/$tdir/$testnum
13006         mkdir -p $dir0 || error "creating dir $dir0"
13007
13008         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13009         [[ ${DV[0]} != ${DV[1]} ]] ||
13010                 error "data version did not change on write"\
13011                       " ${DV[0]} == ${DV[1]}"
13012
13013         # clean up
13014         rm -f $file1
13015 }
13016 run_test 187b "Test data version change on volatile file"
13017
13018 test_200() {
13019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13020         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13021         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13022
13023         local POOL=${POOL:-cea1}
13024         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13025         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13026         # Pool OST targets
13027         local first_ost=0
13028         local last_ost=$(($OSTCOUNT - 1))
13029         local ost_step=2
13030         local ost_list=$(seq $first_ost $ost_step $last_ost)
13031         local ost_range="$first_ost $last_ost $ost_step"
13032         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13033         local file_dir=$POOL_ROOT/file_tst
13034         local subdir=$test_path/subdir
13035         local rc=0
13036
13037         if ! combined_mgs_mds ; then
13038                 mount_mgs_client
13039         fi
13040
13041         while : ; do
13042                 # former test_200a test_200b
13043                 pool_add $POOL                          || { rc=$? ; break; }
13044                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13045                 # former test_200c test_200d
13046                 mkdir -p $test_path
13047                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13048                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13049                 mkdir -p $subdir
13050                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13051                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13052                                                         || { rc=$? ; break; }
13053                 # former test_200e test_200f
13054                 local files=$((OSTCOUNT*3))
13055                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13056                                                         || { rc=$? ; break; }
13057                 pool_create_files $POOL $file_dir $files "$ost_list" \
13058                                                         || { rc=$? ; break; }
13059                 # former test_200g test_200h
13060                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13061                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13062
13063                 # former test_201a test_201b test_201c
13064                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13065
13066                 local f=$test_path/$tfile
13067                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13068                 pool_remove $POOL $f                    || { rc=$? ; break; }
13069                 break
13070         done
13071
13072         destroy_test_pools
13073
13074         if ! combined_mgs_mds ; then
13075                 umount_mgs_client
13076         fi
13077         return $rc
13078 }
13079 run_test 200 "OST pools"
13080
13081 # usage: default_attr <count | size | offset>
13082 default_attr() {
13083         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13084 }
13085
13086 # usage: check_default_stripe_attr
13087 check_default_stripe_attr() {
13088         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13089         case $1 in
13090         --stripe-count|-c)
13091                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13092         --stripe-size|-S)
13093                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13094         --stripe-index|-i)
13095                 EXPECTED=-1;;
13096         *)
13097                 error "unknown getstripe attr '$1'"
13098         esac
13099
13100         [ $ACTUAL == $EXPECTED ] ||
13101                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13102 }
13103
13104 test_204a() {
13105         test_mkdir $DIR/$tdir
13106         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13107
13108         check_default_stripe_attr --stripe-count
13109         check_default_stripe_attr --stripe-size
13110         check_default_stripe_attr --stripe-index
13111 }
13112 run_test 204a "Print default stripe attributes"
13113
13114 test_204b() {
13115         test_mkdir $DIR/$tdir
13116         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13117
13118         check_default_stripe_attr --stripe-size
13119         check_default_stripe_attr --stripe-index
13120 }
13121 run_test 204b "Print default stripe size and offset"
13122
13123 test_204c() {
13124         test_mkdir $DIR/$tdir
13125         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13126
13127         check_default_stripe_attr --stripe-count
13128         check_default_stripe_attr --stripe-index
13129 }
13130 run_test 204c "Print default stripe count and offset"
13131
13132 test_204d() {
13133         test_mkdir $DIR/$tdir
13134         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13135
13136         check_default_stripe_attr --stripe-count
13137         check_default_stripe_attr --stripe-size
13138 }
13139 run_test 204d "Print default stripe count and size"
13140
13141 test_204e() {
13142         test_mkdir $DIR/$tdir
13143         $SETSTRIPE -d $DIR/$tdir
13144
13145         check_default_stripe_attr --stripe-count --raw
13146         check_default_stripe_attr --stripe-size --raw
13147         check_default_stripe_attr --stripe-index --raw
13148 }
13149 run_test 204e "Print raw stripe attributes"
13150
13151 test_204f() {
13152         test_mkdir $DIR/$tdir
13153         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13154
13155         check_default_stripe_attr --stripe-size --raw
13156         check_default_stripe_attr --stripe-index --raw
13157 }
13158 run_test 204f "Print raw stripe size and offset"
13159
13160 test_204g() {
13161         test_mkdir $DIR/$tdir
13162         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13163
13164         check_default_stripe_attr --stripe-count --raw
13165         check_default_stripe_attr --stripe-index --raw
13166 }
13167 run_test 204g "Print raw stripe count and offset"
13168
13169 test_204h() {
13170         test_mkdir $DIR/$tdir
13171         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13172
13173         check_default_stripe_attr --stripe-count --raw
13174         check_default_stripe_attr --stripe-size --raw
13175 }
13176 run_test 204h "Print raw stripe count and size"
13177
13178 # Figure out which job scheduler is being used, if any,
13179 # or use a fake one
13180 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13181         JOBENV=SLURM_JOB_ID
13182 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13183         JOBENV=LSB_JOBID
13184 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13185         JOBENV=PBS_JOBID
13186 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13187         JOBENV=LOADL_STEP_ID
13188 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13189         JOBENV=JOB_ID
13190 else
13191         $LCTL list_param jobid_name > /dev/null 2>&1
13192         if [ $? -eq 0 ]; then
13193                 JOBENV=nodelocal
13194         else
13195                 JOBENV=FAKE_JOBID
13196         fi
13197 fi
13198
13199 verify_jobstats() {
13200         local cmd=($1)
13201         shift
13202         local facets="$@"
13203
13204 # we don't really need to clear the stats for this test to work, since each
13205 # command has a unique jobid, but it makes debugging easier if needed.
13206 #       for facet in $facets; do
13207 #               local dev=$(convert_facet2label $facet)
13208 #               # clear old jobstats
13209 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13210 #       done
13211
13212         # use a new JobID for each test, or we might see an old one
13213         [ "$JOBENV" = "FAKE_JOBID" ] &&
13214                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13215
13216         JOBVAL=${!JOBENV}
13217
13218         [ "$JOBENV" = "nodelocal" ] && {
13219                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13220                 $LCTL set_param jobid_name=$FAKE_JOBID
13221                 JOBVAL=$FAKE_JOBID
13222         }
13223
13224         log "Test: ${cmd[*]}"
13225         log "Using JobID environment variable $JOBENV=$JOBVAL"
13226
13227         if [ $JOBENV = "FAKE_JOBID" ]; then
13228                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13229         else
13230                 ${cmd[*]}
13231         fi
13232
13233         # all files are created on OST0000
13234         for facet in $facets; do
13235                 local stats="*.$(convert_facet2label $facet).job_stats"
13236                 if [ $(do_facet $facet lctl get_param $stats |
13237                        grep -c $JOBVAL) -ne 1 ]; then
13238                         do_facet $facet lctl get_param $stats
13239                         error "No jobstats for $JOBVAL found on $facet::$stats"
13240                 fi
13241         done
13242 }
13243
13244 jobstats_set() {
13245         local new_jobenv=$1
13246
13247         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$new_jobenv
13248         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $new_jobenv
13249 }
13250
13251 test_205() { # Job stats
13252         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13253                 { skip "Need MDS version with at least 2.7.1"; return 0; }
13254
13255         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13256         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13257         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13258         remote_ost_nodsh && skip "remote OST with nodsh" && return
13259
13260         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13261                 skip "Server doesn't support jobstats" && return 0
13262         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
13263
13264         local old_jobenv=$($LCTL get_param -n jobid_var)
13265         if [ $old_jobenv != $JOBENV ]; then
13266                 jobstats_set $JOBENV
13267                 stack_trap "do_facet mgs \
13268                         $LCTL conf_param $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13269         fi
13270
13271         changelog_register
13272
13273         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13274                                 mdt.*.job_cleanup_interval | head -n 1)
13275         local new_interval=5
13276         do_facet $SINGLEMDS \
13277                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
13278         stack_trap "do_facet $SINGLEMDS \
13279                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
13280         local start=$SECONDS
13281
13282         local cmd
13283         # mkdir
13284         cmd="mkdir $DIR/$tdir"
13285         verify_jobstats "$cmd" "$SINGLEMDS"
13286         # rmdir
13287         cmd="rmdir $DIR/$tdir"
13288         verify_jobstats "$cmd" "$SINGLEMDS"
13289         # mkdir on secondary MDT
13290         if [ $MDSCOUNT -gt 1 ]; then
13291                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13292                 verify_jobstats "$cmd" "mds2"
13293         fi
13294         # mknod
13295         cmd="mknod $DIR/$tfile c 1 3"
13296         verify_jobstats "$cmd" "$SINGLEMDS"
13297         # unlink
13298         cmd="rm -f $DIR/$tfile"
13299         verify_jobstats "$cmd" "$SINGLEMDS"
13300         # create all files on OST0000 so verify_jobstats can find OST stats
13301         # open & close
13302         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
13303         verify_jobstats "$cmd" "$SINGLEMDS"
13304         # setattr
13305         cmd="touch $DIR/$tfile"
13306         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13307         # write
13308         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13309         verify_jobstats "$cmd" "ost1"
13310         # read
13311         cancel_lru_locks osc
13312         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13313         verify_jobstats "$cmd" "ost1"
13314         # truncate
13315         cmd="$TRUNCATE $DIR/$tfile 0"
13316         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13317         # rename
13318         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13319         verify_jobstats "$cmd" "$SINGLEMDS"
13320         # jobstats expiry - sleep until old stats should be expired
13321         local left=$((new_interval + 5 - (SECONDS - start)))
13322         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13323                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
13324                         "0" $left
13325         cmd="mkdir $DIR/$tdir.expire"
13326         verify_jobstats "$cmd" "$SINGLEMDS"
13327         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
13328             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
13329
13330         # Ensure that jobid are present in changelog (if supported by MDS)
13331         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
13332                 changelog_dump | tail -10
13333                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
13334                 [ $jobids -eq 9 ] ||
13335                         error "Wrong changelog jobid count $jobids != 9"
13336
13337                 # LU-5862
13338                 JOBENV="disable"
13339                 jobstats_set $JOBENV
13340                 touch $DIR/$tfile
13341                 changelog_dump | grep $tfile
13342                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
13343                 [ $jobids -eq 0 ] ||
13344                         error "Unexpected jobids when jobid_var=$JOBENV"
13345         fi
13346 }
13347 run_test 205 "Verify job stats"
13348
13349 # LU-1480, LU-1773 and LU-1657
13350 test_206() {
13351         mkdir -p $DIR/$tdir
13352         $SETSTRIPE -c -1 $DIR/$tdir
13353 #define OBD_FAIL_LOV_INIT 0x1403
13354         $LCTL set_param fail_loc=0xa0001403
13355         $LCTL set_param fail_val=1
13356         touch $DIR/$tdir/$tfile || true
13357 }
13358 run_test 206 "fail lov_init_raid0() doesn't lbug"
13359
13360 test_207a() {
13361         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13362         local fsz=`stat -c %s $DIR/$tfile`
13363         cancel_lru_locks mdc
13364
13365         # do not return layout in getattr intent
13366 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
13367         $LCTL set_param fail_loc=0x170
13368         local sz=`stat -c %s $DIR/$tfile`
13369
13370         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
13371
13372         rm -rf $DIR/$tfile
13373 }
13374 run_test 207a "can refresh layout at glimpse"
13375
13376 test_207b() {
13377         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
13378         local cksum=`md5sum $DIR/$tfile`
13379         local fsz=`stat -c %s $DIR/$tfile`
13380         cancel_lru_locks mdc
13381         cancel_lru_locks osc
13382
13383         # do not return layout in getattr intent
13384 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
13385         $LCTL set_param fail_loc=0x171
13386
13387         # it will refresh layout after the file is opened but before read issues
13388         echo checksum is "$cksum"
13389         echo "$cksum" |md5sum -c --quiet || error "file differs"
13390
13391         rm -rf $DIR/$tfile
13392 }
13393 run_test 207b "can refresh layout at open"
13394
13395 test_208() {
13396         # FIXME: in this test suite, only RD lease is used. This is okay
13397         # for now as only exclusive open is supported. After generic lease
13398         # is done, this test suite should be revised. - Jinshan
13399
13400         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13401         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
13402                 { skip "Need MDS version at least 2.4.52"; return 0; }
13403
13404         echo "==== test 1: verify get lease work"
13405         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
13406
13407         echo "==== test 2: verify lease can be broken by upcoming open"
13408         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13409         local PID=$!
13410         sleep 1
13411
13412         $MULTIOP $DIR/$tfile oO_RDONLY:c
13413         kill -USR1 $PID && wait $PID || error "break lease error"
13414
13415         echo "==== test 3: verify lease can't be granted if an open already exists"
13416         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
13417         local PID=$!
13418         sleep 1
13419
13420         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
13421         kill -USR1 $PID && wait $PID || error "open file error"
13422
13423         echo "==== test 4: lease can sustain over recovery"
13424         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
13425         PID=$!
13426         sleep 1
13427
13428         fail mds1
13429
13430         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
13431
13432         echo "==== test 5: lease broken can't be regained by replay"
13433         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
13434         PID=$!
13435         sleep 1
13436
13437         # open file to break lease and then recovery
13438         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
13439         fail mds1
13440
13441         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
13442
13443         rm -f $DIR/$tfile
13444 }
13445 run_test 208 "Exclusive open"
13446
13447 test_209() {
13448         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
13449                 skip_env "must have disp_stripe" && return
13450
13451         touch $DIR/$tfile
13452         sync; sleep 5; sync;
13453
13454         echo 3 > /proc/sys/vm/drop_caches
13455         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13456
13457         # open/close 500 times
13458         for i in $(seq 500); do
13459                 cat $DIR/$tfile
13460         done
13461
13462         echo 3 > /proc/sys/vm/drop_caches
13463         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
13464
13465         echo "before: $req_before, after: $req_after"
13466         [ $((req_after - req_before)) -ge 300 ] &&
13467                 error "open/close requests are not freed"
13468         return 0
13469 }
13470 run_test 209 "read-only open/close requests should be freed promptly"
13471
13472 test_212() {
13473         size=`date +%s`
13474         size=$((size % 8192 + 1))
13475         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
13476         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
13477         rm -f $DIR/f212 $DIR/f212.xyz
13478 }
13479 run_test 212 "Sendfile test ============================================"
13480
13481 test_213() {
13482         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
13483         cancel_lru_locks osc
13484         lctl set_param fail_loc=0x8000040f
13485         # generate a read lock
13486         cat $DIR/$tfile > /dev/null
13487         # write to the file, it will try to cancel the above read lock.
13488         cat /etc/hosts >> $DIR/$tfile
13489 }
13490 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
13491
13492 test_214() { # for bug 20133
13493         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
13494         for (( i=0; i < 340; i++ )) ; do
13495                 touch $DIR/$tdir/d214c/a$i
13496         done
13497
13498         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
13499         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
13500         ls $DIR/d214c || error "ls $DIR/d214c failed"
13501         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
13502         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
13503 }
13504 run_test 214 "hash-indexed directory test - bug 20133"
13505
13506 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
13507 create_lnet_proc_files() {
13508         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
13509 }
13510
13511 # counterpart of create_lnet_proc_files
13512 remove_lnet_proc_files() {
13513         rm -f $TMP/lnet_$1.sys
13514 }
13515
13516 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13517 # 3rd arg as regexp for body
13518 check_lnet_proc_stats() {
13519         local l=$(cat "$TMP/lnet_$1" |wc -l)
13520         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
13521
13522         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
13523 }
13524
13525 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
13526 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
13527 # optional and can be regexp for 2nd line (lnet.routes case)
13528 check_lnet_proc_entry() {
13529         local blp=2          # blp stands for 'position of 1st line of body'
13530         [ -z "$5" ] || blp=3 # lnet.routes case
13531
13532         local l=$(cat "$TMP/lnet_$1" |wc -l)
13533         # subtracting one from $blp because the body can be empty
13534         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
13535
13536         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
13537                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
13538
13539         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
13540                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
13541
13542         # bail out if any unexpected line happened
13543         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
13544         [ "$?" != 0 ] || error "$2 misformatted"
13545 }
13546
13547 test_215() { # for bugs 18102, 21079, 21517
13548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13549         local N='(0|[1-9][0-9]*)'       # non-negative numeric
13550         local P='[1-9][0-9]*'           # positive numeric
13551         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
13552         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
13553         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
13554         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
13555
13556         local L1 # regexp for 1st line
13557         local L2 # regexp for 2nd line (optional)
13558         local BR # regexp for the rest (body)
13559
13560         # lnet.stats should look as 11 space-separated non-negative numerics
13561         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
13562         create_lnet_proc_files "stats"
13563         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
13564         remove_lnet_proc_files "stats"
13565
13566         # lnet.routes should look like this:
13567         # Routing disabled/enabled
13568         # net hops priority state router
13569         # where net is a string like tcp0, hops > 0, priority >= 0,
13570         # state is up/down,
13571         # router is a string like 192.168.1.1@tcp2
13572         L1="^Routing (disabled|enabled)$"
13573         L2="^net +hops +priority +state +router$"
13574         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
13575         create_lnet_proc_files "routes"
13576         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
13577         remove_lnet_proc_files "routes"
13578
13579         # lnet.routers should look like this:
13580         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
13581         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
13582         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
13583         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
13584         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
13585         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
13586         create_lnet_proc_files "routers"
13587         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
13588         remove_lnet_proc_files "routers"
13589
13590         # lnet.peers should look like this:
13591         # nid refs state last max rtr min tx min queue
13592         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
13593         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
13594         # numeric (0 or >0 or <0), queue >= 0.
13595         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
13596         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
13597         create_lnet_proc_files "peers"
13598         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
13599         remove_lnet_proc_files "peers"
13600
13601         # lnet.buffers  should look like this:
13602         # pages count credits min
13603         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
13604         L1="^pages +count +credits +min$"
13605         BR="^ +$N +$N +$I +$I$"
13606         create_lnet_proc_files "buffers"
13607         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
13608         remove_lnet_proc_files "buffers"
13609
13610         # lnet.nis should look like this:
13611         # nid status alive refs peer rtr max tx min
13612         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
13613         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
13614         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
13615         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
13616         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
13617         create_lnet_proc_files "nis"
13618         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
13619         remove_lnet_proc_files "nis"
13620
13621         # can we successfully write to lnet.stats?
13622         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
13623 }
13624 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
13625
13626 test_216() { # bug 20317
13627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13628         remote_ost_nodsh && skip "remote OST with nodsh" && return
13629
13630         local node
13631         local facets=$(get_facets OST)
13632         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13633
13634         save_lustre_params client "osc.*.contention_seconds" > $p
13635         save_lustre_params $facets \
13636                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
13637         save_lustre_params $facets \
13638                 "ldlm.namespaces.filter-*.contended_locks" >> $p
13639         save_lustre_params $facets \
13640                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
13641         clear_stats osc.*.osc_stats
13642
13643         # agressive lockless i/o settings
13644         do_nodes $(comma_list $(osts_nodes)) \
13645                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
13646                         ldlm.namespaces.filter-*.contended_locks=0 \
13647                         ldlm.namespaces.filter-*.contention_seconds=60"
13648         lctl set_param -n osc.*.contention_seconds=60
13649
13650         $DIRECTIO write $DIR/$tfile 0 10 4096
13651         $CHECKSTAT -s 40960 $DIR/$tfile
13652
13653         # disable lockless i/o
13654         do_nodes $(comma_list $(osts_nodes)) \
13655                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
13656                         ldlm.namespaces.filter-*.contended_locks=32 \
13657                         ldlm.namespaces.filter-*.contention_seconds=0"
13658         lctl set_param -n osc.*.contention_seconds=0
13659         clear_stats osc.*.osc_stats
13660
13661         dd if=/dev/zero of=$DIR/$tfile count=0
13662         $CHECKSTAT -s 0 $DIR/$tfile
13663
13664         restore_lustre_params <$p
13665         rm -f $p
13666         rm $DIR/$tfile
13667 }
13668 run_test 216 "check lockless direct write updates file size and kms correctly"
13669
13670 test_217() { # bug 22430
13671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13672         local node
13673         local nid
13674
13675         for node in $(nodes_list); do
13676                 nid=$(host_nids_address $node $NETTYPE)
13677                 if [[ $nid = *-* ]] ; then
13678                         echo "lctl ping $(h2nettype $nid)"
13679                         lctl ping $(h2nettype $nid)
13680                 else
13681                         echo "skipping $node (no hyphen detected)"
13682                 fi
13683         done
13684 }
13685 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
13686
13687 test_218() {
13688        # do directio so as not to populate the page cache
13689        log "creating a 10 Mb file"
13690        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13691        log "starting reads"
13692        dd if=$DIR/$tfile of=/dev/null bs=4096 &
13693        log "truncating the file"
13694        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13695        log "killing dd"
13696        kill %+ || true # reads might have finished
13697        echo "wait until dd is finished"
13698        wait
13699        log "removing the temporary file"
13700        rm -rf $DIR/$tfile || error "tmp file removal failed"
13701 }
13702 run_test 218 "parallel read and truncate should not deadlock ======================="
13703
13704 test_219() {
13705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13706         # write one partial page
13707         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
13708         # set no grant so vvp_io_commit_write will do sync write
13709         $LCTL set_param fail_loc=0x411
13710         # write a full page at the end of file
13711         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
13712
13713         $LCTL set_param fail_loc=0
13714         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
13715         $LCTL set_param fail_loc=0x411
13716         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
13717
13718         # LU-4201
13719         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
13720         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
13721 }
13722 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
13723
13724 test_220() { #LU-325
13725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13726         remote_ost_nodsh && skip "remote OST with nodsh" && return
13727         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13728         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13729         local OSTIDX=0
13730
13731         # create on MDT0000 so the last_id and next_id are correct
13732         mkdir $DIR/$tdir
13733         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
13734         OST=${OST%_UUID}
13735
13736         # on the mdt's osc
13737         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
13738         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
13739                         osc.$mdtosc_proc1.prealloc_last_id)
13740         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
13741                         osc.$mdtosc_proc1.prealloc_next_id)
13742
13743         $LFS df -i
13744
13745         if ! combined_mgs_mds ; then
13746                 mount_mgs_client
13747         fi
13748
13749         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
13750         #define OBD_FAIL_OST_ENOINO              0x229
13751         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
13752         create_pool $FSNAME.$TESTNAME || return 1
13753         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
13754
13755         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
13756
13757         MDSOBJS=$((last_id - next_id))
13758         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
13759
13760         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
13761         echo "OST still has $count kbytes free"
13762
13763         echo "create $MDSOBJS files @next_id..."
13764         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
13765
13766         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13767                         osc.$mdtosc_proc1.prealloc_last_id)
13768         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13769                         osc.$mdtosc_proc1.prealloc_next_id)
13770
13771         echo "after creation, last_id=$last_id2, next_id=$next_id2"
13772         $LFS df -i
13773
13774         echo "cleanup..."
13775
13776         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
13777         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
13778
13779         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
13780                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
13781         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
13782                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
13783         echo "unlink $MDSOBJS files @$next_id..."
13784         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
13785
13786         if ! combined_mgs_mds ; then
13787                 umount_mgs_client
13788         fi
13789 }
13790 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
13791
13792 test_221() {
13793         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13794         dd if=`which date` of=$MOUNT/date oflag=sync
13795         chmod +x $MOUNT/date
13796
13797         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
13798         $LCTL set_param fail_loc=0x80001401
13799
13800         $MOUNT/date > /dev/null
13801         rm -f $MOUNT/date
13802 }
13803 run_test 221 "make sure fault and truncate race to not cause OOM"
13804
13805 test_222a () {
13806         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13807         rm -rf $DIR/$tdir
13808         test_mkdir $DIR/$tdir
13809         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13810         createmany -o $DIR/$tdir/$tfile 10
13811         cancel_lru_locks mdc
13812         cancel_lru_locks osc
13813         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13814         $LCTL set_param fail_loc=0x31a
13815         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
13816         $LCTL set_param fail_loc=0
13817         rm -r $DIR/$tdir
13818 }
13819 run_test 222a "AGL for ls should not trigger CLIO lock failure"
13820
13821 test_222b () {
13822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13823         rm -rf $DIR/$tdir
13824         test_mkdir $DIR/$tdir
13825         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13826         createmany -o $DIR/$tdir/$tfile 10
13827         cancel_lru_locks mdc
13828         cancel_lru_locks osc
13829         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13830         $LCTL set_param fail_loc=0x31a
13831         rm -r $DIR/$tdir || error "AGL for rmdir failed"
13832         $LCTL set_param fail_loc=0
13833 }
13834 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
13835
13836 test_223 () {
13837         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13838         rm -rf $DIR/$tdir
13839         test_mkdir $DIR/$tdir
13840         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13841         createmany -o $DIR/$tdir/$tfile 10
13842         cancel_lru_locks mdc
13843         cancel_lru_locks osc
13844         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13845         $LCTL set_param fail_loc=0x31b
13846         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13847         $LCTL set_param fail_loc=0
13848         rm -r $DIR/$tdir
13849 }
13850 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13851
13852 test_224a() { # LU-1039, MRP-303
13853         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13854         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13855         $LCTL set_param fail_loc=0x508
13856         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13857         $LCTL set_param fail_loc=0
13858         df $DIR
13859 }
13860 run_test 224a "Don't panic on bulk IO failure"
13861
13862 test_224b() { # LU-1039, MRP-303
13863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13864         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13865         cancel_lru_locks osc
13866         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13867         $LCTL set_param fail_loc=0x515
13868         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13869         $LCTL set_param fail_loc=0
13870         df $DIR
13871 }
13872 run_test 224b "Don't panic on bulk IO failure"
13873
13874 test_224c() { # LU-6441
13875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13876         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13877
13878         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13879         save_writethrough $p
13880         set_cache writethrough on
13881
13882         local pages_per_rpc=$($LCTL get_param \
13883                                 osc.*.max_pages_per_rpc)
13884         local at_max=$($LCTL get_param -n at_max)
13885         local timeout=$($LCTL get_param -n timeout)
13886         local test_at="$LCTL get_param -n at_max"
13887         local param_at="$FSNAME.sys.at_max"
13888         local test_timeout="$LCTL get_param -n timeout"
13889         local param_timeout="$FSNAME.sys.timeout"
13890
13891         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13892
13893         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13894                 error "conf_param at_max=0 failed"
13895         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13896                 error "conf_param timeout=5 failed"
13897
13898         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13899         do_facet ost1 $LCTL set_param fail_loc=0x520
13900         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13901         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13902         sync
13903         do_facet ost1 $LCTL set_param fail_loc=0
13904
13905         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13906                 error "conf_param at_max=$at_max failed"
13907         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13908                 $timeout || error "conf_param timeout=$timeout failed"
13909
13910         $LCTL set_param -n $pages_per_rpc
13911         restore_lustre_params < $p
13912         rm -f $p
13913 }
13914 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13915
13916 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13917 test_225a () {
13918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13919         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13920         if [ -z ${MDSSURVEY} ]; then
13921               skip_env "mds-survey not found" && return
13922         fi
13923
13924         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13925                 { skip "Need MDS version at least 2.2.51"; return; }
13926
13927         local mds=$(facet_host $SINGLEMDS)
13928         local target=$(do_nodes $mds 'lctl dl' |
13929                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
13930
13931         local cmd1="file_count=1000 thrhi=4"
13932         local cmd2="dir_count=2 layer=mdd stripe_count=0"
13933         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13934         local cmd="$cmd1 $cmd2 $cmd3"
13935
13936         rm -f ${TMP}/mds_survey*
13937         echo + $cmd
13938         eval $cmd || error "mds-survey with zero-stripe failed"
13939         cat ${TMP}/mds_survey*
13940         rm -f ${TMP}/mds_survey*
13941 }
13942 run_test 225a "Metadata survey sanity with zero-stripe"
13943
13944 test_225b () {
13945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13946         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13947         if [ -z ${MDSSURVEY} ]; then
13948               skip_env "mds-survey not found" && return
13949         fi
13950         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13951             { skip "Need MDS version at least 2.2.51"; return; }
13952
13953         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13954               skip_env "Need to mount OST to test" && return
13955         fi
13956
13957         local mds=$(facet_host $SINGLEMDS)
13958         local target=$(do_nodes $mds 'lctl dl' |
13959                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
13960
13961         local cmd1="file_count=1000 thrhi=4"
13962         local cmd2="dir_count=2 layer=mdd stripe_count=1"
13963         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13964         local cmd="$cmd1 $cmd2 $cmd3"
13965
13966         rm -f ${TMP}/mds_survey*
13967         echo + $cmd
13968         eval $cmd || error "mds-survey with stripe_count failed"
13969         cat ${TMP}/mds_survey*
13970         rm -f ${TMP}/mds_survey*
13971 }
13972 run_test 225b "Metadata survey sanity with stripe_count = 1"
13973
13974 mcreate_path2fid () {
13975         local mode=$1
13976         local major=$2
13977         local minor=$3
13978         local name=$4
13979         local desc=$5
13980         local path=$DIR/$tdir/$name
13981         local fid
13982         local rc
13983         local fid_path
13984
13985         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13986                 error "cannot create $desc"
13987
13988         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13989         rc=$?
13990         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13991
13992         fid_path=$($LFS fid2path $MOUNT $fid)
13993         rc=$?
13994         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13995
13996         [ "$path" == "$fid_path" ] ||
13997                 error "fid2path returned $fid_path, expected $path"
13998
13999         echo "pass with $path and $fid"
14000 }
14001
14002 test_226a () {
14003         rm -rf $DIR/$tdir
14004         mkdir -p $DIR/$tdir
14005
14006         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14007         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14008         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14009         mcreate_path2fid 0040666 0 0 dir "directory"
14010         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14011         mcreate_path2fid 0100666 0 0 file "regular file"
14012         mcreate_path2fid 0120666 0 0 link "symbolic link"
14013         mcreate_path2fid 0140666 0 0 sock "socket"
14014 }
14015 run_test 226a "call path2fid and fid2path on files of all type"
14016
14017 test_226b () {
14018         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14019         rm -rf $DIR/$tdir
14020         local MDTIDX=1
14021
14022         mkdir -p $DIR/$tdir
14023         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14024                 error "create remote directory failed"
14025         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14026         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14027                                 "character special file (null)"
14028         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14029                                 "character special file (no device)"
14030         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14031         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14032                                 "block special file (loop)"
14033         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14034         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14035         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14036 }
14037 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14038
14039 # LU-1299 Executing or running ldd on a truncated executable does not
14040 # cause an out-of-memory condition.
14041 test_227() {
14042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14043         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
14044         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14045         chmod +x $MOUNT/date
14046
14047         $MOUNT/date > /dev/null
14048         ldd $MOUNT/date > /dev/null
14049         rm -f $MOUNT/date
14050 }
14051 run_test 227 "running truncated executable does not cause OOM"
14052
14053 # LU-1512 try to reuse idle OI blocks
14054 test_228a() {
14055         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14056         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14057         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14058                 skip "ldiskfs only test" && return
14059
14060         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14061         local myDIR=$DIR/$tdir
14062
14063         mkdir -p $myDIR
14064         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14065         $LCTL set_param fail_loc=0x80001002
14066         createmany -o $myDIR/t- 10000
14067         $LCTL set_param fail_loc=0
14068         # The guard is current the largest FID holder
14069         touch $myDIR/guard
14070         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14071                     tr -d '[')
14072         local IDX=$(($SEQ % 64))
14073
14074         do_facet $SINGLEMDS sync
14075         # Make sure journal flushed.
14076         sleep 6
14077         local blk1=$(do_facet $SINGLEMDS \
14078                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14079                      grep Blockcount | awk '{print $4}')
14080
14081         # Remove old files, some OI blocks will become idle.
14082         unlinkmany $myDIR/t- 10000
14083         # Create new files, idle OI blocks should be reused.
14084         createmany -o $myDIR/t- 2000
14085         do_facet $SINGLEMDS sync
14086         # Make sure journal flushed.
14087         sleep 6
14088         local blk2=$(do_facet $SINGLEMDS \
14089                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14090                      grep Blockcount | awk '{print $4}')
14091
14092         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14093 }
14094 run_test 228a "try to reuse idle OI blocks"
14095
14096 test_228b() {
14097         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14098         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14099         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14100                 skip "ldiskfs only test" && return
14101
14102         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14103         local myDIR=$DIR/$tdir
14104
14105         mkdir -p $myDIR
14106         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14107         $LCTL set_param fail_loc=0x80001002
14108         createmany -o $myDIR/t- 10000
14109         $LCTL set_param fail_loc=0
14110         # The guard is current the largest FID holder
14111         touch $myDIR/guard
14112         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14113                     tr -d '[')
14114         local IDX=$(($SEQ % 64))
14115
14116         do_facet $SINGLEMDS sync
14117         # Make sure journal flushed.
14118         sleep 6
14119         local blk1=$(do_facet $SINGLEMDS \
14120                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14121                      grep Blockcount | awk '{print $4}')
14122
14123         # Remove old files, some OI blocks will become idle.
14124         unlinkmany $myDIR/t- 10000
14125
14126         # stop the MDT
14127         stop $SINGLEMDS || error "Fail to stop MDT."
14128         # remount the MDT
14129         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14130
14131         df $MOUNT || error "Fail to df."
14132         # Create new files, idle OI blocks should be reused.
14133         createmany -o $myDIR/t- 2000
14134         do_facet $SINGLEMDS sync
14135         # Make sure journal flushed.
14136         sleep 6
14137         local blk2=$(do_facet $SINGLEMDS \
14138                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14139                      grep Blockcount | awk '{print $4}')
14140
14141         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14142 }
14143 run_test 228b "idle OI blocks can be reused after MDT restart"
14144
14145 #LU-1881
14146 test_228c() {
14147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14148         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14149         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14150                 skip "ldiskfs only test" && return
14151
14152         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14153         local myDIR=$DIR/$tdir
14154
14155         mkdir -p $myDIR
14156         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14157         $LCTL set_param fail_loc=0x80001002
14158         # 20000 files can guarantee there are index nodes in the OI file
14159         createmany -o $myDIR/t- 20000
14160         $LCTL set_param fail_loc=0
14161         # The guard is current the largest FID holder
14162         touch $myDIR/guard
14163         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14164                     tr -d '[')
14165         local IDX=$(($SEQ % 64))
14166
14167         do_facet $SINGLEMDS sync
14168         # Make sure journal flushed.
14169         sleep 6
14170         local blk1=$(do_facet $SINGLEMDS \
14171                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14172                      grep Blockcount | awk '{print $4}')
14173
14174         # Remove old files, some OI blocks will become idle.
14175         unlinkmany $myDIR/t- 20000
14176         rm -f $myDIR/guard
14177         # The OI file should become empty now
14178
14179         # Create new files, idle OI blocks should be reused.
14180         createmany -o $myDIR/t- 2000
14181         do_facet $SINGLEMDS sync
14182         # Make sure journal flushed.
14183         sleep 6
14184         local blk2=$(do_facet $SINGLEMDS \
14185                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14186                      grep Blockcount | awk '{print $4}')
14187
14188         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14189 }
14190 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14191
14192 test_229() { # LU-2482, LU-3448
14193         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14194                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
14195                 return
14196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14197         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
14198
14199         rm -f $DIR/$tfile
14200
14201         # Create a file with a released layout and stripe count 2.
14202         $MULTIOP $DIR/$tfile H2c ||
14203                 error "failed to create file with released layout"
14204
14205         $GETSTRIPE -v $DIR/$tfile
14206
14207         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14208         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14209
14210         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14211         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14212         stat $DIR/$tfile || error "failed to stat released file"
14213
14214         chown $RUNAS_ID $DIR/$tfile ||
14215                 error "chown $RUNAS_ID $DIR/$tfile failed"
14216
14217         chgrp $RUNAS_ID $DIR/$tfile ||
14218                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14219
14220         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14221         rm $DIR/$tfile || error "failed to remove released file"
14222 }
14223 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14224
14225 test_230a() {
14226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14227         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14228         local MDTIDX=1
14229
14230         test_mkdir $DIR/$tdir
14231         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14232         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
14233         [ $mdt_idx -ne 0 ] &&
14234                 error "create local directory on wrong MDT $mdt_idx"
14235
14236         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14237                         error "create remote directory failed"
14238         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
14239         [ $mdt_idx -ne $MDTIDX ] &&
14240                 error "create remote directory on wrong MDT $mdt_idx"
14241
14242         createmany -o $DIR/$tdir/test_230/t- 10 ||
14243                 error "create files on remote directory failed"
14244         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
14245         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14246         rm -r $DIR/$tdir || error "unlink remote directory failed"
14247 }
14248 run_test 230a "Create remote directory and files under the remote directory"
14249
14250 test_230b() {
14251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14252         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14253         local MDTIDX=1
14254         local mdt_index
14255         local i
14256         local file
14257         local pid
14258         local stripe_count
14259         local migrate_dir=$DIR/$tdir/migrate_dir
14260         local other_dir=$DIR/$tdir/other_dir
14261
14262         test_mkdir $DIR/$tdir
14263         test_mkdir -i0 -c1 $migrate_dir
14264         test_mkdir -i0 -c1 $other_dir
14265         for ((i=0; i<10; i++)); do
14266                 mkdir -p $migrate_dir/dir_${i}
14267                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14268                         error "create files under remote dir failed $i"
14269         done
14270
14271         cp /etc/passwd $migrate_dir/$tfile
14272         cp /etc/passwd $other_dir/$tfile
14273         chattr +SAD $migrate_dir
14274         chattr +SAD $migrate_dir/$tfile
14275
14276         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14277         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14278         local old_dir_mode=$(stat -c%f $migrate_dir)
14279         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14280
14281         mkdir -p $migrate_dir/dir_default_stripe2
14282         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
14283         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
14284
14285         mkdir -p $other_dir
14286         ln $migrate_dir/$tfile $other_dir/luna
14287         ln $migrate_dir/$tfile $migrate_dir/sofia
14288         ln $other_dir/$tfile $migrate_dir/david
14289         ln -s $migrate_dir/$tfile $other_dir/zachary
14290         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14291         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14292
14293         $LFS migrate -m $MDTIDX $migrate_dir ||
14294                 error "fails on migrating remote dir to MDT1"
14295
14296         echo "migratate to MDT1, then checking.."
14297         for ((i = 0; i < 10; i++)); do
14298                 for file in $(find $migrate_dir/dir_${i}); do
14299                         mdt_index=$($LFS getstripe -M $file)
14300                         [ $mdt_index == $MDTIDX ] ||
14301                                 error "$file is not on MDT${MDTIDX}"
14302                 done
14303         done
14304
14305         # the multiple link file should still in MDT0
14306         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
14307         [ $mdt_index == 0 ] ||
14308                 error "$file is not on MDT${MDTIDX}"
14309
14310         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14311         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14312                 error " expect $old_dir_flag get $new_dir_flag"
14313
14314         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14315         [ "$old_file_flag" = "$new_file_flag" ] ||
14316                 error " expect $old_file_flag get $new_file_flag"
14317
14318         local new_dir_mode=$(stat -c%f $migrate_dir)
14319         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14320                 error "expect mode $old_dir_mode get $new_dir_mode"
14321
14322         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14323         [ "$old_file_mode" = "$new_file_mode" ] ||
14324                 error "expect mode $old_file_mode get $new_file_mode"
14325
14326         diff /etc/passwd $migrate_dir/$tfile ||
14327                 error "$tfile different after migration"
14328
14329         diff /etc/passwd $other_dir/luna ||
14330                 error "luna different after migration"
14331
14332         diff /etc/passwd $migrate_dir/sofia ||
14333                 error "sofia different after migration"
14334
14335         diff /etc/passwd $migrate_dir/david ||
14336                 error "david different after migration"
14337
14338         diff /etc/passwd $other_dir/zachary ||
14339                 error "zachary different after migration"
14340
14341         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14342                 error "${tfile}_ln different after migration"
14343
14344         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14345                 error "${tfile}_ln_other different after migration"
14346
14347         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
14348         [ $stripe_count = 2 ] ||
14349                 error "dir strpe_count $d != 2 after migration."
14350
14351         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
14352         [ $stripe_count = 2 ] ||
14353                 error "file strpe_count $d != 2 after migration."
14354
14355         #migrate back to MDT0
14356         MDTIDX=0
14357
14358         $LFS migrate -m $MDTIDX $migrate_dir ||
14359                 error "fails on migrating remote dir to MDT0"
14360
14361         echo "migrate back to MDT0, checking.."
14362         for file in $(find $migrate_dir); do
14363                 mdt_index=$($LFS getstripe -M $file)
14364                 [ $mdt_index == $MDTIDX ] ||
14365                         error "$file is not on MDT${MDTIDX}"
14366         done
14367
14368         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14369         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14370                 error " expect $old_dir_flag get $new_dir_flag"
14371
14372         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14373         [ "$old_file_flag" = "$new_file_flag" ] ||
14374                 error " expect $old_file_flag get $new_file_flag"
14375
14376         local new_dir_mode=$(stat -c%f $migrate_dir)
14377         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14378                 error "expect mode $old_dir_mode get $new_dir_mode"
14379
14380         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14381         [ "$old_file_mode" = "$new_file_mode" ] ||
14382                 error "expect mode $old_file_mode get $new_file_mode"
14383
14384         diff /etc/passwd ${migrate_dir}/$tfile ||
14385                 error "$tfile different after migration"
14386
14387         diff /etc/passwd ${other_dir}/luna ||
14388                 error "luna different after migration"
14389
14390         diff /etc/passwd ${migrate_dir}/sofia ||
14391                 error "sofia different after migration"
14392
14393         diff /etc/passwd ${other_dir}/zachary ||
14394                 error "zachary different after migration"
14395
14396         diff /etc/passwd $migrate_dir/${tfile}_ln ||
14397                 error "${tfile}_ln different after migration"
14398
14399         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
14400                 error "${tfile}_ln_other different after migration"
14401
14402         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
14403         [ $stripe_count = 2 ] ||
14404                 error "dir strpe_count $d != 2 after migration."
14405
14406         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
14407         [ $stripe_count = 2 ] ||
14408                 error "file strpe_count $d != 2 after migration."
14409
14410         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14411 }
14412 run_test 230b "migrate directory"
14413
14414 test_230c() {
14415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14416         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14417         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14418         local MDTIDX=1
14419         local mdt_index
14420         local file
14421         local migrate_dir=$DIR/$tdir/migrate_dir
14422
14423         #If migrating directory fails in the middle, all entries of
14424         #the directory is still accessiable.
14425         test_mkdir $DIR/$tdir
14426         test_mkdir -i0 -c1 $migrate_dir
14427         stat $migrate_dir
14428         createmany -o $migrate_dir/f 10 ||
14429                 error "create files under ${migrate_dir} failed"
14430
14431         #failed after migrating 5 entries
14432         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
14433         do_facet mds1 lctl set_param fail_loc=0x20001801
14434         do_facet mds1 lctl  set_param fail_val=5
14435         local t=$(ls $migrate_dir | wc -l)
14436         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
14437                 error "migrate should fail after 5 entries"
14438
14439         mkdir $migrate_dir/dir &&
14440                 error "mkdir succeeds under migrating directory"
14441         touch $migrate_dir/file &&
14442                 error "touch file succeeds under migrating directory"
14443
14444         local u=$(ls $migrate_dir | wc -l)
14445         [ "$u" == "$t" ] || error "$u != $t during migration"
14446
14447         for file in $(find $migrate_dir); do
14448                 stat $file || error "stat $file failed"
14449         done
14450
14451         do_facet mds1 lctl set_param fail_loc=0
14452         do_facet mds1 lctl set_param fail_val=0
14453
14454         $LFS migrate -m $MDTIDX $migrate_dir ||
14455                 error "migrate open files should failed with open files"
14456
14457         echo "Finish migration, then checking.."
14458         for file in $(find $migrate_dir); do
14459                 mdt_index=$($LFS getstripe -M $file)
14460                 [ $mdt_index == $MDTIDX ] ||
14461                         error "$file is not on MDT${MDTIDX}"
14462         done
14463
14464         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14465 }
14466 run_test 230c "check directory accessiblity if migration is failed"
14467
14468 test_230d() {
14469         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14470         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14471         local MDTIDX=1
14472         local mdt_index
14473         local migrate_dir=$DIR/$tdir/migrate_dir
14474         local i
14475         local j
14476
14477         test_mkdir $DIR/$tdir
14478         test_mkdir -i0 -c1 $migrate_dir
14479
14480         for ((i=0; i<100; i++)); do
14481                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
14482                 createmany -o $migrate_dir/dir_${i}/f 100 ||
14483                         error "create files under remote dir failed $i"
14484         done
14485
14486         $LFS migrate -m $MDTIDX $migrate_dir ||
14487                 error "migrate remote dir error"
14488
14489         echo "Finish migration, then checking.."
14490         for file in $(find $migrate_dir); do
14491                 mdt_index=$($LFS getstripe -M $file)
14492                 [ $mdt_index == $MDTIDX ] ||
14493                         error "$file is not on MDT${MDTIDX}"
14494         done
14495
14496         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14497 }
14498 run_test 230d "check migrate big directory"
14499
14500 test_230e() {
14501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14502         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14503         local i
14504         local j
14505         local a_fid
14506         local b_fid
14507
14508         mkdir -p $DIR/$tdir
14509         mkdir $DIR/$tdir/migrate_dir
14510         mkdir $DIR/$tdir/other_dir
14511         touch $DIR/$tdir/migrate_dir/a
14512         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
14513         ls $DIR/$tdir/other_dir
14514
14515         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14516                 error "migrate dir fails"
14517
14518         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14519         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14520
14521         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14522         [ $mdt_index == 0 ] || error "a is not on MDT0"
14523
14524         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
14525                 error "migrate dir fails"
14526
14527         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
14528         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
14529
14530         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14531         [ $mdt_index == 1 ] || error "a is not on MDT1"
14532
14533         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
14534         [ $mdt_index == 1 ] || error "b is not on MDT1"
14535
14536         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14537         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
14538
14539         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
14540
14541         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14542 }
14543 run_test 230e "migrate mulitple local link files"
14544
14545 test_230f() {
14546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14547         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14548         local a_fid
14549         local ln_fid
14550
14551         mkdir -p $DIR/$tdir
14552         mkdir $DIR/$tdir/migrate_dir
14553         $LFS mkdir -i1 $DIR/$tdir/other_dir
14554         touch $DIR/$tdir/migrate_dir/a
14555         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
14556         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
14557         ls $DIR/$tdir/other_dir
14558
14559         # a should be migrated to MDT1, since no other links on MDT0
14560         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14561                 error "#1 migrate dir fails"
14562         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14563         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
14564         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14565         [ $mdt_index == 1 ] || error "a is not on MDT1"
14566
14567         # a should stay on MDT1, because it is a mulitple link file
14568         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14569                 error "#2 migrate dir fails"
14570         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14571         [ $mdt_index == 1 ] || error "a is not on MDT1"
14572
14573         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
14574                 error "#3 migrate dir fails"
14575
14576         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
14577         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
14578         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
14579
14580         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
14581         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
14582
14583         # a should be migrated to MDT0, since no other links on MDT1
14584         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
14585                 error "#4 migrate dir fails"
14586         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
14587         [ $mdt_index == 0 ] || error "a is not on MDT0"
14588
14589         rm -rf $DIR/$tdir || error "rm dir failed after migration"
14590 }
14591 run_test 230f "migrate mulitple remote link files"
14592
14593 test_230g() {
14594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14595         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14596
14597         mkdir -p $DIR/$tdir/migrate_dir
14598
14599         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
14600                 error "migrating dir to non-exist MDT succeeds"
14601         true
14602 }
14603 run_test 230g "migrate dir to non-exist MDT"
14604
14605 test_230h() {
14606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14607         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14608         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
14609                 skip "Need MDS version at least 2.7.64" && return
14610         local mdt_index
14611
14612         mkdir -p $DIR/$tdir/migrate_dir
14613
14614         $LFS migrate -m1 $DIR &&
14615                 error "migrating mountpoint1 should fail"
14616
14617         $LFS migrate -m1 $DIR/$tdir/.. &&
14618                 error "migrating mountpoint2 should fail"
14619
14620         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
14621                 error "migrating $tdir fail"
14622
14623         mdt_index=$($LFS getstripe -M $DIR/$tdir)
14624         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14625
14626         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
14627         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
14628
14629 }
14630 run_test 230h "migrate .. and root"
14631
14632 test_230i() {
14633         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14634         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14635
14636         mkdir -p $DIR/$tdir/migrate_dir
14637
14638         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
14639                 error "migration fails with a tailing slash"
14640
14641         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
14642                 error "migration fails with two tailing slashes"
14643 }
14644 run_test 230i "lfs migrate -m tolerates trailing slashes"
14645
14646 test_231a()
14647 {
14648         # For simplicity this test assumes that max_pages_per_rpc
14649         # is the same across all OSCs
14650         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
14651         local bulk_size=$((max_pages * 4096))
14652         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
14653                                        head -n 1)
14654
14655         mkdir -p $DIR/$tdir
14656         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
14657                 error "failed to set stripe with -S ${brw_size}M option"
14658
14659         # clear the OSC stats
14660         $LCTL set_param osc.*.stats=0 &>/dev/null
14661         stop_writeback
14662
14663         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
14664         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
14665                 oflag=direct &>/dev/null || error "dd failed"
14666
14667         sync; sleep 1; sync # just to be safe
14668         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
14669         if [ x$nrpcs != "x1" ]; then
14670                 $LCTL get_param osc.*.stats
14671                 error "found $nrpcs ost_write RPCs, not 1 as expected"
14672         fi
14673
14674         start_writeback
14675         # Drop the OSC cache, otherwise we will read from it
14676         cancel_lru_locks osc
14677
14678         # clear the OSC stats
14679         $LCTL set_param osc.*.stats=0 &>/dev/null
14680
14681         # Client reads $bulk_size.
14682         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
14683                 iflag=direct &>/dev/null || error "dd failed"
14684
14685         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
14686         if [ x$nrpcs != "x1" ]; then
14687                 $LCTL get_param osc.*.stats
14688                 error "found $nrpcs ost_read RPCs, not 1 as expected"
14689         fi
14690 }
14691 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
14692
14693 test_231b() {
14694         mkdir -p $DIR/$tdir
14695         local i
14696         for i in {0..1023}; do
14697                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
14698                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
14699                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
14700         done
14701         sync
14702 }
14703 run_test 231b "must not assert on fully utilized OST request buffer"
14704
14705 test_232a() {
14706         mkdir -p $DIR/$tdir
14707         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
14708
14709         #define OBD_FAIL_LDLM_OST_LVB            0x31c
14710         do_facet ost1 $LCTL set_param fail_loc=0x31c
14711
14712         # ignore dd failure
14713         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
14714
14715         do_facet ost1 $LCTL set_param fail_loc=0
14716         umount_client $MOUNT || error "umount failed"
14717         mount_client $MOUNT || error "mount failed"
14718         stop ost1 || error "cannot stop ost1"
14719         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
14720 }
14721 run_test 232a "failed lock should not block umount"
14722
14723 test_232b() {
14724         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
14725                 { skip "Need MDS version at least 2.10.58"; return; }
14726         mkdir -p $DIR/$tdir
14727         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
14728         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
14729         sync
14730         cancel_lru_locks osc
14731
14732         #define OBD_FAIL_LDLM_OST_LVB            0x31c
14733         do_facet ost1 $LCTL set_param fail_loc=0x31c
14734
14735         # ignore failure
14736         $LFS data_version $DIR/$tdir/$tfile || true
14737
14738         do_facet ost1 $LCTL set_param fail_loc=0
14739         umount_client $MOUNT || error "umount failed"
14740         mount_client $MOUNT || error "mount failed"
14741         stop ost1 || error "cannot stop ost1"
14742         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
14743 }
14744 run_test 232b "failed data version lock should not block umount"
14745
14746 test_233a() {
14747         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
14748         { skip "Need MDS version at least 2.3.64"; return; }
14749         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14750
14751         local fid=$($LFS path2fid $MOUNT)
14752         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14753                 error "cannot access $MOUNT using its FID '$fid'"
14754 }
14755 run_test 233a "checking that OBF of the FS root succeeds"
14756
14757 test_233b() {
14758         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
14759         { skip "Need MDS version at least 2.5.90"; return; }
14760         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14761
14762         local fid=$($LFS path2fid $MOUNT/.lustre)
14763         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14764                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
14765
14766         fid=$($LFS path2fid $MOUNT/.lustre/fid)
14767         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14768                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
14769 }
14770 run_test 233b "checking that OBF of the FS .lustre succeeds"
14771
14772 test_234() {
14773         local p="$TMP/sanityN-$TESTNAME.parameters"
14774         save_lustre_params client "llite.*.xattr_cache" > $p
14775         lctl set_param llite.*.xattr_cache 1 ||
14776                 { skip "xattr cache is not supported"; return 0; }
14777
14778         mkdir -p $DIR/$tdir || error "mkdir failed"
14779         touch $DIR/$tdir/$tfile || error "touch failed"
14780         # OBD_FAIL_LLITE_XATTR_ENOMEM
14781         $LCTL set_param fail_loc=0x1405
14782         getfattr -n user.attr $DIR/$tdir/$tfile &&
14783                 error "getfattr should have failed with ENOMEM"
14784         $LCTL set_param fail_loc=0x0
14785         rm -rf $DIR/$tdir
14786
14787         restore_lustre_params < $p
14788         rm -f $p
14789 }
14790 run_test 234 "xattr cache should not crash on ENOMEM"
14791
14792 test_235() {
14793         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
14794                 skip "Need MDS version at least 2.4.52" && return
14795         flock_deadlock $DIR/$tfile
14796         local RC=$?
14797         case $RC in
14798                 0)
14799                 ;;
14800                 124) error "process hangs on a deadlock"
14801                 ;;
14802                 *) error "error executing flock_deadlock $DIR/$tfile"
14803                 ;;
14804         esac
14805 }
14806 run_test 235 "LU-1715: flock deadlock detection does not work properly"
14807
14808 #LU-2935
14809 test_236() {
14810         check_swap_layouts_support && return 0
14811         test_mkdir -c1 $DIR/$tdir
14812
14813         local ref1=/etc/passwd
14814         local ref2=/etc/group
14815         local file1=$DIR/$tdir/f1
14816         local file2=$DIR/$tdir/f2
14817
14818         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
14819         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
14820         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
14821         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
14822         local fd=$(free_fd)
14823         local cmd="exec $fd<>$file2"
14824         eval $cmd
14825         rm $file2
14826         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
14827                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
14828         cmd="exec $fd>&-"
14829         eval $cmd
14830         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14831
14832         #cleanup
14833         rm -rf $DIR/$tdir
14834 }
14835 run_test 236 "Layout swap on open unlinked file"
14836
14837 # test to verify file handle related system calls
14838 # (name_to_handle_at/open_by_handle_at)
14839 # The new system calls are supported in glibc >= 2.14.
14840
14841 test_237() {
14842         echo "Test file_handle syscalls" > $DIR/$tfile ||
14843                 error "write failed"
14844         check_fhandle_syscalls $DIR/$tfile ||
14845                 error "check_fhandle_syscalls failed"
14846 }
14847 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14848
14849 # LU-4659 linkea consistency
14850 test_238() {
14851         local server_version=$(lustre_version_code $SINGLEMDS)
14852
14853         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14854                 [[ $server_version -gt $(version_code 2.5.1) &&
14855                    $server_version -lt $(version_code 2.5.50) ]] ||
14856                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14857
14858         touch $DIR/$tfile
14859         ln $DIR/$tfile $DIR/$tfile.lnk
14860         touch $DIR/$tfile.new
14861         mv $DIR/$tfile.new $DIR/$tfile
14862         local fid1=$($LFS path2fid $DIR/$tfile)
14863         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14864         local path1=$($LFS fid2path $FSNAME "$fid1")
14865         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14866         local path2=$($LFS fid2path $FSNAME "$fid2")
14867         [ $tfile.lnk == $path2 ] ||
14868                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14869         rm -f $DIR/$tfile*
14870 }
14871 run_test 238 "Verify linkea consistency"
14872
14873 test_239A() { # was test_239
14874         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14875                 skip "Need MDS version at least 2.5.60" && return
14876         local list=$(comma_list $(mdts_nodes))
14877
14878         mkdir -p $DIR/$tdir
14879         createmany -o $DIR/$tdir/f- 5000
14880         unlinkmany $DIR/$tdir/f- 5000
14881         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
14882                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
14883         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
14884                         osp.*MDT*.sync_in_flight" | calc_sum)
14885         [ "$changes" -eq 0 ] || error "$changes not synced"
14886 }
14887 run_test 239A "osp_sync test"
14888
14889 test_239a() { #LU-5297
14890         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14891         touch $DIR/$tfile
14892         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14893         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14894         chgrp $RUNAS_GID $DIR/$tfile
14895         wait_delete_completed
14896 }
14897 run_test 239a "process invalid osp sync record correctly"
14898
14899 test_239b() { #LU-5297
14900         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14901         touch $DIR/$tfile1
14902         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14903         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14904         chgrp $RUNAS_GID $DIR/$tfile1
14905         wait_delete_completed
14906         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14907         touch $DIR/$tfile2
14908         chgrp $RUNAS_GID $DIR/$tfile2
14909         wait_delete_completed
14910 }
14911 run_test 239b "process osp sync record with ENOMEM error correctly"
14912
14913 test_240() {
14914         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14915         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14916
14917         mkdir -p $DIR/$tdir
14918
14919         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14920                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14921         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14922                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14923
14924         umount_client $MOUNT || error "umount failed"
14925         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14926         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14927         mount_client $MOUNT || error "failed to mount client"
14928
14929         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14930         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14931 }
14932 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14933
14934 test_241_bio() {
14935         for LOOP in $(seq $1); do
14936                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14937                 cancel_lru_locks $OSC || true
14938         done
14939 }
14940
14941 test_241_dio() {
14942         for LOOP in $(seq $1); do
14943                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14944                                                 iflag=direct 2>/dev/null
14945         done
14946 }
14947
14948 test_241a() { # was test_241
14949         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14950         ls -la $DIR/$tfile
14951         cancel_lru_locks $OSC
14952         test_241_bio 1000 &
14953         PID=$!
14954         test_241_dio 1000
14955         wait $PID
14956 }
14957 run_test 241a "bio vs dio"
14958
14959 test_241b() {
14960         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14961         ls -la $DIR/$tfile
14962         test_241_dio 1000 &
14963         PID=$!
14964         test_241_dio 1000
14965         wait $PID
14966 }
14967 run_test 241b "dio vs dio"
14968
14969 test_242() {
14970         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14971         mkdir -p $DIR/$tdir
14972         touch $DIR/$tdir/$tfile
14973
14974         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14975         do_facet mds1 lctl set_param fail_loc=0x105
14976         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14977
14978         do_facet mds1 lctl set_param fail_loc=0
14979         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14980 }
14981 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14982
14983 test_243()
14984 {
14985         test_mkdir $DIR/$tdir
14986         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14987 }
14988 run_test 243 "various group lock tests"
14989
14990 test_244()
14991 {
14992         test_mkdir $DIR/$tdir
14993         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14994         sendfile_grouplock $DIR/$tdir/$tfile || \
14995                 error "sendfile+grouplock failed"
14996         rm -rf $DIR/$tdir
14997 }
14998 run_test 244 "sendfile with group lock tests"
14999
15000 test_245() {
15001         local flagname="multi_mod_rpcs"
15002         local connect_data_name="max_mod_rpcs"
15003         local out
15004
15005         # check if multiple modify RPCs flag is set
15006         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15007                 grep "connect_flags:")
15008         echo "$out"
15009
15010         echo "$out" | grep -qw $flagname
15011         if [ $? -ne 0 ]; then
15012                 echo "connect flag $flagname is not set"
15013                 return
15014         fi
15015
15016         # check if multiple modify RPCs data is set
15017         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15018         echo "$out"
15019
15020         echo "$out" | grep -qw $connect_data_name ||
15021                 error "import should have connect data $connect_data_name"
15022 }
15023 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15024
15025 test_246() { # LU-7371
15026         remote_ost_nodsh && skip "remote OST with nodsh" && return
15027         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15028                 skip "Need OST version >= 2.7.62" && return 0
15029         do_facet ost1 $LCTL set_param fail_val=4095
15030 #define OBD_FAIL_OST_READ_SIZE          0x234
15031         do_facet ost1 $LCTL set_param fail_loc=0x234
15032         $LFS setstripe $DIR/$tfile -i 0 -c 1
15033         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15034         cancel_lru_locks $FSNAME-OST0000
15035         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15036 }
15037 run_test 246 "Read file of size 4095 should return right length"
15038
15039 cleanup_247() {
15040         local submount=$1
15041
15042         trap 0
15043         umount_client $submount
15044         rmdir $submount
15045 }
15046
15047 test_247a() {
15048         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15049                 grep -q subtree ||
15050                 { skip "Fileset feature is not supported"; return; }
15051
15052         local submount=${MOUNT}_$tdir
15053
15054         mkdir $MOUNT/$tdir
15055         mkdir -p $submount || error "mkdir $submount failed"
15056         FILESET="$FILESET/$tdir" mount_client $submount ||
15057                 error "mount $submount failed"
15058         trap "cleanup_247 $submount" EXIT
15059         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15060         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15061                 error "read $MOUNT/$tdir/$tfile failed"
15062         cleanup_247 $submount
15063 }
15064 run_test 247a "mount subdir as fileset"
15065
15066 test_247b() {
15067         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15068                 { skip "Fileset feature is not supported"; return; }
15069
15070         local submount=${MOUNT}_$tdir
15071
15072         rm -rf $MOUNT/$tdir
15073         mkdir -p $submount || error "mkdir $submount failed"
15074         SKIP_FILESET=1
15075         FILESET="$FILESET/$tdir" mount_client $submount &&
15076                 error "mount $submount should fail"
15077         rmdir $submount
15078 }
15079 run_test 247b "mount subdir that dose not exist"
15080
15081 test_247c() {
15082         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15083                 { skip "Fileset feature is not supported"; return; }
15084
15085         local submount=${MOUNT}_$tdir
15086
15087         mkdir -p $MOUNT/$tdir/dir1
15088         mkdir -p $submount || error "mkdir $submount failed"
15089         trap "cleanup_247 $submount" EXIT
15090         FILESET="$FILESET/$tdir" mount_client $submount ||
15091                 error "mount $submount failed"
15092         local fid=$($LFS path2fid $MOUNT/)
15093         $LFS fid2path $submount $fid && error "fid2path should fail"
15094         cleanup_247 $submount
15095 }
15096 run_test 247c "running fid2path outside root"
15097
15098 test_247d() {
15099         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15100                 { skip "Fileset feature is not supported"; return; }
15101
15102         local submount=${MOUNT}_$tdir
15103
15104         mkdir -p $MOUNT/$tdir/dir1
15105         mkdir -p $submount || error "mkdir $submount failed"
15106         FILESET="$FILESET/$tdir" mount_client $submount ||
15107                 error "mount $submount failed"
15108         trap "cleanup_247 $submount" EXIT
15109         local fid=$($LFS path2fid $submount/dir1)
15110         $LFS fid2path $submount $fid || error "fid2path should succeed"
15111         cleanup_247 $submount
15112 }
15113 run_test 247d "running fid2path inside root"
15114
15115 # LU-8037
15116 test_247e() {
15117         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15118                 grep -q subtree ||
15119                 { skip "Fileset feature is not supported"; return; }
15120
15121         local submount=${MOUNT}_$tdir
15122
15123         mkdir $MOUNT/$tdir
15124         mkdir -p $submount || error "mkdir $submount failed"
15125         FILESET="$FILESET/.." mount_client $submount &&
15126                 error "mount $submount should fail"
15127         rmdir $submount
15128 }
15129 run_test 247e "mount .. as fileset"
15130
15131 test_248() {
15132         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15133         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
15134
15135         # create a large file for fast read verification
15136         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15137
15138         # make sure the file is created correctly
15139         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15140                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
15141
15142         echo "Test 1: verify that fast read is 4 times faster on cache read"
15143
15144         # small read with fast read enabled
15145         $LCTL set_param -n llite.*.fast_read=1
15146         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15147                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15148                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15149         # small read with fast read disabled
15150         $LCTL set_param -n llite.*.fast_read=0
15151         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15152                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15153                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15154
15155         # verify that fast read is 4 times faster for cache read
15156         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15157                 error_not_in_vm "fast read was not 4 times faster: " \
15158                            "$t_fast vs $t_slow"
15159
15160         echo "Test 2: verify the performance between big and small read"
15161         $LCTL set_param -n llite.*.fast_read=1
15162
15163         # 1k non-cache read
15164         cancel_lru_locks osc
15165         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15166                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15167                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15168
15169         # 1M non-cache read
15170         cancel_lru_locks osc
15171         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15172                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15173                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15174
15175         # verify that big IO is not 4 times faster than small IO
15176         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
15177                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
15178
15179         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
15180         rm -f $DIR/$tfile
15181 }
15182 run_test 248 "fast read verification"
15183
15184 test_249() { # LU-7890
15185         rm -f $DIR/$tfile
15186         $SETSTRIPE -c 1 $DIR/$tfile
15187
15188         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
15189         skip "Need at least version 2.8.54"
15190
15191         # Offset 2T == 4k * 512M
15192         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
15193                 error "dd to 2T offset failed"
15194 }
15195 run_test 249 "Write above 2T file size"
15196
15197 test_250() {
15198         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
15199          && skip "no 16TB file size limit on ZFS" && return
15200
15201         $SETSTRIPE -c 1 $DIR/$tfile
15202         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
15203         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
15204         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
15205         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
15206                 conv=notrunc,fsync && error "append succeeded"
15207         return 0
15208 }
15209 run_test 250 "Write above 16T limit"
15210
15211 test_251() {
15212         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
15213
15214         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
15215         #Skip once - writing the first stripe will succeed
15216         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15217         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
15218                 error "short write happened"
15219
15220         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15221         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
15222                 error "short read happened"
15223
15224         rm -f $DIR/$tfile
15225 }
15226 run_test 251 "Handling short read and write correctly"
15227
15228 test_252() {
15229         local tgt
15230         local dev
15231         local out
15232         local uuid
15233         local num
15234         local gen
15235
15236         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15237         remote_ost_nodsh && skip "remote OST with nodsh" && return
15238         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
15239              "$(facet_fstype mds1)" != "ldiskfs" ]; then
15240                 skip "ldiskfs only test"
15241                 return
15242         fi
15243
15244         # check lr_reader on OST0000
15245         tgt=ost1
15246         dev=$(facet_device $tgt)
15247         out=$(do_facet $tgt $LR_READER $dev)
15248         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15249         echo "$out"
15250         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
15251         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
15252                 error "Invalid uuid returned by $LR_READER on target $tgt"
15253         echo -e "uuid returned by $LR_READER is '$uuid'\n"
15254
15255         # check lr_reader -c on MDT0000
15256         tgt=mds1
15257         dev=$(facet_device $tgt)
15258         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
15259                 echo "$LR_READER does not support additional options"
15260                 return 0
15261         fi
15262         out=$(do_facet $tgt $LR_READER -c $dev)
15263         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15264         echo "$out"
15265         num=$(echo "$out" | grep -c "mdtlov")
15266         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
15267                 error "Invalid number of mdtlov clients returned by $LR_READER"
15268         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
15269
15270         # check lr_reader -cr on MDT0000
15271         out=$(do_facet $tgt $LR_READER -cr $dev)
15272         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15273         echo "$out"
15274         echo "$out" | grep -q "^reply_data:$" ||
15275                 error "$LR_READER should have returned 'reply_data' section"
15276         num=$(echo "$out" | grep -c "client_generation")
15277         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
15278 }
15279 run_test 252 "check lr_reader tool"
15280
15281 test_253_fill_ost() {
15282         local size_mb #how many MB should we write to pass watermark
15283         local lwm=$3  #low watermark
15284         local free_10mb #10% of free space
15285
15286         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15287         size_mb=$((free_kb / 1024 - lwm))
15288         free_10mb=$((free_kb / 10240))
15289         #If 10% of free space cross low watermark use it
15290         if (( free_10mb > size_mb )); then
15291                 size_mb=$free_10mb
15292         else
15293                 #At least we need to store 1.1 of difference between
15294                 #free space and low watermark
15295                 size_mb=$((size_mb + size_mb / 10))
15296         fi
15297         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
15298                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
15299                          oflag=append conv=notrunc
15300         fi
15301
15302         sleep_maxage
15303
15304         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
15305         echo "OST still has $((free_kb / 1024)) mbytes free"
15306 }
15307
15308 test_253() {
15309         local ostidx=0
15310         local rc=0
15311
15312         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15313         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15314         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
15315
15316         local ost_name=$($LFS osts |
15317                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
15318         # on the mdt's osc
15319         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
15320         do_facet $SINGLEMDS $LCTL get_param -n \
15321                 osp.$mdtosc_proc1.reserved_mb_high ||
15322                 { skip  "remote MDS does not support reserved_mb_high" &&
15323                   return; }
15324
15325         rm -rf $DIR/$tdir
15326         wait_mds_ost_sync
15327         wait_delete_completed
15328         mkdir $DIR/$tdir
15329
15330         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
15331                         osp.$mdtosc_proc1.reserved_mb_high)
15332         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
15333                         osp.$mdtosc_proc1.reserved_mb_low)
15334         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
15335
15336         if ! combined_mgs_mds ; then
15337                 mount_mgs_client
15338         fi
15339         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
15340         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
15341                 error "Adding $ost_name to pool failed"
15342
15343         # Wait for client to see a OST at pool
15344         wait_update $HOSTNAME "$LCTL get_param -n
15345                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
15346                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
15347                 error "Client can not see the pool"
15348         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
15349                 error "Setstripe failed"
15350
15351         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
15352         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
15353         echo "OST still has $((blocks/1024)) mbytes free"
15354
15355         local new_lwm=$((blocks/1024-10))
15356         do_facet $SINGLEMDS $LCTL set_param \
15357                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
15358         do_facet $SINGLEMDS $LCTL set_param \
15359                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
15360
15361         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15362
15363         #First enospc could execute orphan deletion so repeat.
15364         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
15365
15366         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15367                         osp.$mdtosc_proc1.prealloc_status)
15368         echo "prealloc_status $oa_status"
15369
15370         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
15371                 error "File creation should fail"
15372         #object allocation was stopped, but we still able to append files
15373         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
15374                 error "Append failed"
15375         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
15376
15377         wait_delete_completed
15378
15379         sleep_maxage
15380
15381         for i in $(seq 10 12); do
15382                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
15383                         error "File creation failed after rm";
15384         done
15385
15386         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
15387                         osp.$mdtosc_proc1.prealloc_status)
15388         echo "prealloc_status $oa_status"
15389
15390         if (( oa_status != 0 )); then
15391                 error "Object allocation still disable after rm"
15392         fi
15393         do_facet $SINGLEMDS $LCTL set_param \
15394                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
15395         do_facet $SINGLEMDS $LCTL set_param \
15396                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
15397
15398
15399         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
15400                 error "Remove $ost_name from pool failed"
15401         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
15402                 error "Pool destroy fialed"
15403
15404         if ! combined_mgs_mds ; then
15405                 umount_mgs_client
15406         fi
15407 }
15408 run_test 253 "Check object allocation limit"
15409
15410 test_254() {
15411         local cl_user
15412
15413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15414         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15415
15416         local MDT0=$(facet_svc $SINGLEMDS)
15417
15418         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
15419                 { skip "MDS does not support changelog_size" && return; }
15420
15421         changelog_register || error "changelog_register failed"
15422
15423         changelog_clear 0 || error "changelog_clear failed"
15424
15425         local size1=$(do_facet $SINGLEMDS \
15426                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15427         echo "Changelog size $size1"
15428
15429         rm -rf $DIR/$tdir
15430         $LFS mkdir -i 0 $DIR/$tdir
15431         # change something
15432         mkdir -p $DIR/$tdir/pics/2008/zachy
15433         touch $DIR/$tdir/pics/2008/zachy/timestamp
15434         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
15435         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
15436         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
15437         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
15438         rm $DIR/$tdir/pics/desktop.jpg
15439
15440         local size2=$(do_facet $SINGLEMDS \
15441                       $LCTL get_param -n mdd.$MDT0.changelog_size)
15442         echo "Changelog size after work $size2"
15443
15444         (( $size2 > $size1 )) ||
15445                 error "new Changelog size=$size2 less than old size=$size1"
15446 }
15447 run_test 254 "Check changelog size"
15448
15449 ladvise_no_type()
15450 {
15451         local type=$1
15452         local file=$2
15453
15454         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
15455                 awk -F: '{print $2}' | grep $type > /dev/null
15456         if [ $? -ne 0 ]; then
15457                 return 0
15458         fi
15459         return 1
15460 }
15461
15462 ladvise_no_ioctl()
15463 {
15464         local file=$1
15465
15466         lfs ladvise -a willread $file > /dev/null 2>&1
15467         if [ $? -eq 0 ]; then
15468                 return 1
15469         fi
15470
15471         lfs ladvise -a willread $file 2>&1 |
15472                 grep "Inappropriate ioctl for device" > /dev/null
15473         if [ $? -eq 0 ]; then
15474                 return 0
15475         fi
15476         return 1
15477 }
15478
15479 percent() {
15480         bc <<<"scale=2; ($1 - $2) * 100 / $2"
15481 }
15482
15483 # run a random read IO workload
15484 # usage: random_read_iops <filename> <filesize> <iosize>
15485 random_read_iops() {
15486         local file=$1
15487         local fsize=$2
15488         local iosize=${3:-4096}
15489
15490         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
15491                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
15492 }
15493
15494 drop_file_oss_cache() {
15495         local file="$1"
15496         local nodes="$2"
15497
15498         $LFS ladvise -a dontneed $file 2>/dev/null ||
15499                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
15500 }
15501
15502 ladvise_willread_performance()
15503 {
15504         local repeat=10
15505         local average_origin=0
15506         local average_cache=0
15507         local average_ladvise=0
15508
15509         for ((i = 1; i <= $repeat; i++)); do
15510                 echo "Iter $i/$repeat: reading without willread hint"
15511                 cancel_lru_locks osc
15512                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15513                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
15514                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
15515                 average_origin=$(bc <<<"$average_origin + $speed_origin")
15516
15517                 cancel_lru_locks osc
15518                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
15519                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
15520                 average_cache=$(bc <<<"$average_cache + $speed_cache")
15521
15522                 cancel_lru_locks osc
15523                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
15524                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
15525                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
15526                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
15527                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
15528         done
15529         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
15530         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
15531         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
15532
15533         speedup_cache=$(percent $average_cache $average_origin)
15534         speedup_ladvise=$(percent $average_ladvise $average_origin)
15535
15536         echo "Average uncached read: $average_origin"
15537         echo "Average speedup with OSS cached read: " \
15538                 "$average_cache = +$speedup_cache%"
15539         echo "Average speedup with ladvise willread: " \
15540                 "$average_ladvise = +$speedup_ladvise%"
15541
15542         local lowest_speedup=20
15543         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
15544                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
15545                         "got $average_cache%. Skipping ladvise willread check."
15546                 return 0
15547         fi
15548
15549         # the test won't work on ZFS until it supports 'ladvise dontneed', but
15550         # it is still good to run until then to exercise 'ladvise willread'
15551         ! $LFS ladvise -a dontneed $DIR/$tfile &&
15552                 [ "$(facet_fstype ost1)" = "zfs" ] &&
15553                 echo "osd-zfs does not support dontneed or drop_caches" &&
15554                 return 0
15555
15556         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
15557         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
15558                 error_not_in_vm "Speedup with willread is less than " \
15559                         "$lowest_speedup%, got $average_ladvise%"
15560 }
15561
15562 test_255a() {
15563         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15564                 skip "lustre < 2.8.54 does not support ladvise " && return
15565         remote_ost_nodsh && skip "remote OST with nodsh" && return
15566
15567         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
15568
15569         ladvise_no_type willread $DIR/$tfile &&
15570                 skip "willread ladvise is not supported" && return
15571
15572         ladvise_no_ioctl $DIR/$tfile &&
15573                 skip "ladvise ioctl is not supported" && return
15574
15575         local size_mb=100
15576         local size=$((size_mb * 1048576))
15577         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15578                 error "dd to $DIR/$tfile failed"
15579
15580         lfs ladvise -a willread $DIR/$tfile ||
15581                 error "Ladvise failed with no range argument"
15582
15583         lfs ladvise -a willread -s 0 $DIR/$tfile ||
15584                 error "Ladvise failed with no -l or -e argument"
15585
15586         lfs ladvise -a willread -e 1 $DIR/$tfile ||
15587                 error "Ladvise failed with only -e argument"
15588
15589         lfs ladvise -a willread -l 1 $DIR/$tfile ||
15590                 error "Ladvise failed with only -l argument"
15591
15592         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
15593                 error "End offset should not be smaller than start offset"
15594
15595         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
15596                 error "End offset should not be equal to start offset"
15597
15598         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
15599                 error "Ladvise failed with overflowing -s argument"
15600
15601         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
15602                 error "Ladvise failed with overflowing -e argument"
15603
15604         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
15605                 error "Ladvise failed with overflowing -l argument"
15606
15607         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
15608                 error "Ladvise succeeded with conflicting -l and -e arguments"
15609
15610         echo "Synchronous ladvise should wait"
15611         local delay=4
15612 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
15613         do_nodes $(comma_list $(osts_nodes)) \
15614                 $LCTL set_param fail_val=$delay fail_loc=0x237
15615
15616         local start_ts=$SECONDS
15617         lfs ladvise -a willread $DIR/$tfile ||
15618                 error "Ladvise failed with no range argument"
15619         local end_ts=$SECONDS
15620         local inteval_ts=$((end_ts - start_ts))
15621
15622         if [ $inteval_ts -lt $(($delay - 1)) ]; then
15623                 error "Synchronous advice didn't wait reply"
15624         fi
15625
15626         echo "Asynchronous ladvise shouldn't wait"
15627         local start_ts=$SECONDS
15628         lfs ladvise -a willread -b $DIR/$tfile ||
15629                 error "Ladvise failed with no range argument"
15630         local end_ts=$SECONDS
15631         local inteval_ts=$((end_ts - start_ts))
15632
15633         if [ $inteval_ts -gt $(($delay / 2)) ]; then
15634                 error "Asynchronous advice blocked"
15635         fi
15636
15637         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
15638         ladvise_willread_performance
15639 }
15640 run_test 255a "check 'lfs ladvise -a willread'"
15641
15642 facet_meminfo() {
15643         local facet=$1
15644         local info=$2
15645
15646         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
15647 }
15648
15649 test_255b() {
15650         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15651                 skip "lustre < 2.8.54 does not support ladvise " && return
15652         remote_ost_nodsh && skip "remote OST with nodsh" && return
15653
15654         lfs setstripe -c 1 -i 0 $DIR/$tfile
15655
15656         ladvise_no_type dontneed $DIR/$tfile &&
15657                 skip "dontneed ladvise is not supported" && return
15658
15659         ladvise_no_ioctl $DIR/$tfile &&
15660                 skip "ladvise ioctl is not supported" && return
15661
15662         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
15663                 skip "lustre < 2.8.54 does not support ladvise" && return
15664
15665         ! $LFS ladvise -a dontneed $DIR/$tfile &&
15666                 [ "$(facet_fstype ost1)" = "zfs" ] &&
15667                 skip "zfs-osd does not support 'ladvise dontneed'" && return
15668
15669         local size_mb=100
15670         local size=$((size_mb * 1048576))
15671         # In order to prevent disturbance of other processes, only check 3/4
15672         # of the memory usage
15673         local kibibytes=$((size_mb * 1024 * 3 / 4))
15674
15675         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15676                 error "dd to $DIR/$tfile failed"
15677
15678         local total=$(facet_meminfo ost1 MemTotal)
15679         echo "Total memory: $total KiB"
15680
15681         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
15682         local before_read=$(facet_meminfo ost1 Cached)
15683         echo "Cache used before read: $before_read KiB"
15684
15685         lfs ladvise -a willread $DIR/$tfile ||
15686                 error "Ladvise willread failed"
15687         local after_read=$(facet_meminfo ost1 Cached)
15688         echo "Cache used after read: $after_read KiB"
15689
15690         lfs ladvise -a dontneed $DIR/$tfile ||
15691                 error "Ladvise dontneed again failed"
15692         local no_read=$(facet_meminfo ost1 Cached)
15693         echo "Cache used after dontneed ladvise: $no_read KiB"
15694
15695         if [ $total -lt $((before_read + kibibytes)) ]; then
15696                 echo "Memory is too small, abort checking"
15697                 return 0
15698         fi
15699
15700         if [ $((before_read + kibibytes)) -gt $after_read ]; then
15701                 error "Ladvise willread should use more memory" \
15702                         "than $kibibytes KiB"
15703         fi
15704
15705         if [ $((no_read + kibibytes)) -gt $after_read ]; then
15706                 error "Ladvise dontneed should release more memory" \
15707                         "than $kibibytes KiB"
15708         fi
15709 }
15710 run_test 255b "check 'lfs ladvise -a dontneed'"
15711
15712 test_255c() {
15713         local count
15714         local new_count
15715         local difference
15716         local i
15717         local rc
15718
15719         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
15720                 skip "lustre < 2.10.53 does not support lockahead" && return
15721
15722         test_mkdir -p $DIR/$tdir
15723         $SETSTRIPE -i 0 $DIR/$tdir
15724
15725         #test 10 returns only success/failure
15726         i=10
15727         lockahead_test -d $DIR/$tdir -t $i -f $tfile
15728         rc=$?
15729         if [ $rc -eq 255 ]; then
15730                 error "Ladvise test${i} failed, ${rc}"
15731         fi
15732
15733         #test 11 counts lock enqueue requests, all others count new locks
15734         i=11
15735         count=$(do_facet ost1 \
15736                 $LCTL get_param -n ost.OSS.ost.stats)
15737         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
15738
15739         lockahead_test -d $DIR/$tdir -t $i -f $tfile
15740         rc=$?
15741         if [ $rc -eq 255 ]; then
15742                 error "Ladvise test${i} failed, ${rc}"
15743         fi
15744
15745         new_count=$(do_facet ost1 \
15746                 $LCTL get_param -n ost.OSS.ost.stats)
15747         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
15748                    awk '{ print $2 }')
15749
15750         difference="$((new_count - count))"
15751         if [ $difference -ne $rc ]; then
15752                 error "Ladvise test${i}, bad enqueue count, returned " \
15753                       "${rc}, actual ${difference}"
15754         fi
15755
15756         for i in $(seq 12 21); do
15757                 # If we do not do this, we run the risk of having too many
15758                 # locks and starting lock cancellation while we are checking
15759                 # lock counts.
15760                 cancel_lru_locks osc
15761
15762                 count=$($LCTL get_param -n \
15763                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15764
15765                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
15766                 rc=$?
15767                 if [ $rc -eq 255 ]; then
15768                         error "Ladvise test ${i} failed, ${rc}"
15769                 fi
15770
15771                 new_count=$($LCTL get_param -n \
15772                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15773                 difference="$((new_count - count))"
15774
15775                 # Test 15 output is divided by 100 to map down to valid return
15776                 if [ $i -eq 15 ]; then
15777                         rc="$((rc * 100))"
15778                 fi
15779
15780                 if [ $difference -ne $rc ]; then
15781                         error "Ladvise test ${i}, bad lock count, returned " \
15782                               "${rc}, actual ${difference}"
15783                 fi
15784         done
15785
15786         #test 22 returns only success/failure
15787         i=22
15788         lockahead_test -d $DIR/$tdir -t $i -f $tfile
15789         rc=$?
15790         if [ $rc -eq 255 ]; then
15791                 error "Ladvise test${i} failed, ${rc}"
15792         fi
15793 }
15794 run_test 255c "suite of ladvise lockahead tests"
15795
15796 test_256() {
15797         local cl_user
15798         local cat_sl
15799         local mdt_dev
15800
15801         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15802         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15803         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
15804                 skip "ldiskfs only test" && return
15805
15806         mdt_dev=$(mdsdevname 1)
15807         echo $mdt_dev
15808         changelog_users $SINGLEMDS | grep "^cl" &&
15809                 skip "active changelog user" && return
15810
15811         changelog_register || error "changelog_register failed"
15812
15813         rm -rf $DIR/$tdir
15814         mkdir -p $DIR/$tdir
15815
15816         changelog_clear 0 || error "changelog_clear failed"
15817
15818         # change something
15819         touch $DIR/$tdir/{1..10}
15820
15821         # stop the MDT
15822         stop $SINGLEMDS || error "Fail to stop MDT"
15823
15824         # remount the MDT
15825
15826         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
15827
15828         #after mount new plainllog is used
15829         touch $DIR/$tdir/{11..19}
15830         local tmpfile=$(mktemp -u $tfile.XXXXXX)
15831         cat_sl=$(do_facet $SINGLEMDS "sync; \
15832                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
15833                  llog_reader $tmpfile | grep -c type=1064553b")
15834         do_facet $SINGLEMDS llog_reader $tmpfile
15835
15836         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
15837
15838         changelog_clear 0 || error "changelog_clear failed"
15839
15840         cat_sl=$(do_facet $SINGLEMDS "sync; \
15841                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
15842                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
15843
15844         if (( cat_sl == 2 )); then
15845                 error "Empty plain llog was not deleted from changelog catalog"
15846         elif (( cat_sl != 1 )); then
15847                 error "Active plain llog shouldn't be deleted from catalog"
15848         fi
15849 }
15850 run_test 256 "Check llog delete for empty and not full state"
15851
15852 test_257() {
15853         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15854         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15855                 skip "Need MDS version at least 2.8.55" && return
15856
15857         test_mkdir $DIR/$tdir
15858
15859         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
15860                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
15861         stat $DIR/$tdir
15862
15863 #define OBD_FAIL_MDS_XATTR_REP                  0x161
15864         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
15865         local facet=mds$((mdtidx + 1))
15866         set_nodes_failloc $(facet_active_host $facet) 0x80000161
15867         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
15868
15869         stop $facet || error "stop MDS failed"
15870         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
15871                 error "start MDS fail"
15872 }
15873 run_test 257 "xattr locks are not lost"
15874
15875 # Verify we take the i_mutex when security requires it
15876 test_258a() {
15877 #define OBD_FAIL_IMUTEX_SEC 0x141c
15878         $LCTL set_param fail_loc=0x141c
15879         touch $DIR/$tfile
15880         chmod u+s $DIR/$tfile
15881         chmod a+rwx $DIR/$tfile
15882         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15883         RC=$?
15884         if [ $RC -ne 0 ]; then
15885                 error "error, failed to take i_mutex, rc=$?"
15886         fi
15887         rm -f $DIR/$tfile
15888 }
15889 run_test 258a
15890
15891 # Verify we do NOT take the i_mutex in the normal case
15892 test_258b() {
15893 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
15894         $LCTL set_param fail_loc=0x141d
15895         touch $DIR/$tfile
15896         chmod a+rwx $DIR
15897         chmod a+rw $DIR/$tfile
15898         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15899         RC=$?
15900         if [ $RC -ne 0 ]; then
15901                 error "error, took i_mutex unnecessarily, rc=$?"
15902         fi
15903         rm -f $DIR/$tfile
15904
15905 }
15906 run_test 258b "verify i_mutex security behavior"
15907
15908 test_260() {
15909 #define OBD_FAIL_MDC_CLOSE               0x806
15910         $LCTL set_param fail_loc=0x80000806
15911         touch $DIR/$tfile
15912
15913 }
15914 run_test 260 "Check mdc_close fail"
15915
15916 ### Data-on-MDT sanity tests ###
15917 test_270a() {
15918
15919         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15920                 skip "Need MDS version at least 2.10.55" && return
15921
15922         # create DoM file
15923         local dom=$DIR/$tdir/dom_file
15924         local tmp=$DIR/$tdir/tmp_file
15925
15926         mkdir -p $DIR/$tdir
15927
15928         # basic checks for DoM component creation
15929         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
15930                 error "Can set MDT layout to non-first entry"
15931
15932         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
15933                 error "Can define multiple entries as MDT layout"
15934
15935         $LFS setstripe -E 1M -L mdt $dom ||
15936                 error "Can't create DoM layout"
15937
15938         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
15939         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
15940         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
15941
15942         local mdtidx=$($GETSTRIPE -M $dom)
15943         local mdtname=MDT$(printf %04x $mdtidx)
15944         local facet=mds$((mdtidx + 1))
15945         local space_check=1
15946
15947         # Skip free space checks with ZFS
15948         if [ "$(facet_fstype $facet)" == "zfs" ]; then
15949                 space_check=0
15950         fi
15951
15952         # write
15953         sync
15954         local mdtfree1=$(do_facet $facet \
15955                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15956         dd if=/dev/urandom of=$tmp bs=1024 count=100
15957         # check also direct IO along write
15958         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
15959         sync
15960         cmp $tmp $dom || error "file data is different"
15961         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
15962         if [ $space_check == 1 ]; then
15963                 local mdtfree2=$(do_facet $facet \
15964                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15965                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
15966                         error "MDT free space is wrong after write"
15967         fi
15968
15969         # truncate
15970         $TRUNCATE $dom 10000
15971         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
15972         if [ $space_check == 1 ]; then
15973                 mdtfree1=$(do_facet $facet \
15974                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15975                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
15976                         error "MDT free space is wrong after truncate"
15977         fi
15978
15979         # append
15980         cat $tmp >> $dom
15981         sync
15982         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
15983         if [ $space_check == 1 ]; then
15984                 mdtfree2=$(do_facet $facet \
15985                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15986                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
15987                         error "MDT free space is wrong after append"
15988         fi
15989
15990         # delete
15991         rm $dom
15992         if [ $space_check == 1 ]; then
15993                 mdtfree1=$(do_facet $facet \
15994                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15995                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
15996                         error "MDT free space is wrong after removal"
15997         fi
15998
15999         # combined striping
16000         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16001                 error "Can't create DoM + OST striping"
16002
16003         dd if=/dev/urandom of=$tmp bs=1024 count=2000
16004         # check also direct IO along write
16005         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
16006         sync
16007         cmp $tmp $dom || error "file data is different"
16008         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
16009         rm $dom
16010         rm $tmp
16011
16012         return 0
16013 }
16014 run_test 270a "DoM: basic functionality tests"
16015
16016 test_270b() {
16017         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16018                 skip "Need MDS version at least 2.10.55" && return
16019
16020         local dom=$DIR/$tdir/dom_file
16021         local max_size=1048576
16022
16023         mkdir -p $DIR/$tdir
16024         $LFS setstripe -E $max_size -L mdt $dom
16025
16026         # truncate over the limit
16027         $TRUNCATE $dom $(($max_size + 1)) &&
16028                 error "successful truncate over the maximum size"
16029         # write over the limit
16030         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16031                 error "successful write over the maximum size"
16032         # append over the limit
16033         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16034         echo "12345" >> $dom && error "successful append over the maximum size"
16035         rm $dom
16036
16037         return 0
16038 }
16039 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16040
16041 test_270c() {
16042         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16043                 skip "Need MDS version at least 2.10.55" && return
16044
16045         mkdir -p $DIR/$tdir
16046         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16047
16048         # check files inherit DoM EA
16049         touch $DIR/$tdir/first
16050         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
16051                 error "bad pattern"
16052         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16053                 error "bad stripe count"
16054         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16055                 error "bad stripe size"
16056
16057         # check directory inherits DoM EA and uses it as default
16058         mkdir $DIR/$tdir/subdir
16059         touch $DIR/$tdir/subdir/second
16060         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16061                 error "bad pattern in sub-directory"
16062         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16063                 error "bad stripe count in sub-directory"
16064         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16065                 error "bad stripe size in sub-directory"
16066         return 0
16067 }
16068 run_test 270c "DoM: DoM EA inheritance tests"
16069
16070 test_270d() {
16071         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16072                 skip "Need MDS version at least 2.10.55" && return
16073
16074         mkdir -p $DIR/$tdir
16075         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16076
16077         # inherit default DoM striping
16078         mkdir $DIR/$tdir/subdir
16079         touch $DIR/$tdir/subdir/f1
16080
16081         # change default directory striping
16082         $LFS setstripe -c 1 $DIR/$tdir/subdir
16083         touch $DIR/$tdir/subdir/f2
16084         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16085                 error "wrong default striping in file 2"
16086         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16087                 error "bad pattern in file 2"
16088         return 0
16089 }
16090 run_test 270d "DoM: change striping from DoM to RAID0"
16091
16092 test_270e() {
16093         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16094                 skip "Need MDS version at least 2.10.55" && return
16095
16096         mkdir -p $DIR/$tdir/dom
16097         mkdir -p $DIR/$tdir/norm
16098         DOMFILES=20
16099         NORMFILES=10
16100         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16101         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16102
16103         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16104         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16105
16106         # find DoM files by layout
16107         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16108         [ $NUM -eq  $DOMFILES ] ||
16109                 error "lfs find -L: found $NUM, expected $DOMFILES"
16110         echo "Test 1: lfs find 20 DOM files by layout: OK"
16111
16112         # there should be 1 dir with default DOM striping
16113         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16114         [ $NUM -eq  1 ] ||
16115                 error "lfs find -L: found $NUM, expected 1 dir"
16116         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16117
16118         # find DoM files by stripe size
16119         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16120         [ $NUM -eq  $DOMFILES ] ||
16121                 error "lfs find -S: found $NUM, expected $DOMFILES"
16122         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16123
16124         # find files by stripe offset except DoM files
16125         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
16126         [ $NUM -eq  $NORMFILES ] ||
16127                 error "lfs find -i: found $NUM, expected $NORMFILES"
16128         echo "Test 5: lfs find no DOM files by stripe index: OK"
16129         return 0
16130 }
16131 run_test 270e "DoM: lfs find with DoM files test"
16132
16133 test_270f() {
16134         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16135                 skip "Need MDS version at least 2.10.55" && return
16136
16137         local mdtname=${FSNAME}-MDT0000-mdtlov
16138         local dom=$DIR/$tdir/dom_file
16139         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
16140                                                 lod.$mdtname.dom_stripesize)
16141         local dom_limit=131072
16142
16143         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
16144         local dom_current=$(do_facet mds1 $LCTL get_param -n \
16145                                                 lod.$mdtname.dom_stripesize)
16146         [ ${dom_limit} -eq ${dom_current} ] ||
16147                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
16148
16149         $LFS mkdir -i 0 -c 1 $DIR/$tdir
16150         $LFS setstripe -d $DIR/$tdir
16151         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
16152                 error "Can't set directory default striping"
16153
16154         # exceed maximum stripe size
16155         $LFS setstripe -E $(($dom_limit * 2)) -L mdt $dom &&
16156                 error "Able to create DoM component size more than LOD limit"
16157
16158         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
16159         dom_current=$(do_facet mds1 $LCTL get_param -n \
16160                                                 lod.$mdtname.dom_stripesize)
16161         [ 0 -eq ${dom_current} ] ||
16162                 error "Can't set zero DoM stripe limit"
16163
16164         # too low values to be aligned with smallest stripe size 64K
16165         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
16166         dom_current=$(do_facet mds1 $LCTL get_param -n \
16167                                                 lod.$mdtname.dom_stripesize)
16168         [ 30000 -eq ${dom_current} ] &&
16169                 error "Can set too small DoM stripe limit"
16170
16171         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
16172         dom_current=$(do_facet mds1 $LCTL get_param -n \
16173                                                 lod.$mdtname.dom_stripesize)
16174         echo $dom_current
16175         [ 2147483648 -eq ${dom_current} ] &&
16176                 error "Can set too large DoM stripe limit"
16177
16178         do_facet mds1 $LCTL set_param -n \
16179                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
16180         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16181                 error "Can't create DoM component size after limit change"
16182         do_facet mds1 $LCTL set_param -n \
16183                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
16184         $LFS setstripe -E $dom_limit -L mdt ${dom}_big &&
16185                 error "Can create big DoM component after limit decrease"
16186         touch ${dom}_def ||
16187                 error "Can't create file with old default layout"
16188
16189         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
16190         return 0
16191 }
16192 run_test 270f "DoM: maximum DoM stripe size checks"
16193
16194 test_271a() {
16195         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16196                 skip "Need MDS version at least 2.10.55" && return
16197
16198         local dom=$DIR/$tdir/dom
16199
16200         mkdir -p $DIR/$tdir
16201
16202         $LFS setstripe -E 1024K -L mdt $dom
16203
16204         lctl set_param -n mdc.*.stats=clear
16205         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16206         cat $dom > /dev/null
16207         local reads=$(lctl get_param -n mdc.*.stats |
16208                         awk '/ost_read/ {print $2}')
16209         [ -z $reads ] || error "Unexpected $reads READ RPCs"
16210         ls $dom
16211         rm -f $dom
16212 }
16213 run_test 271a "DoM: data is cached for read after write"
16214
16215 test_271b() {
16216         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16217                 skip "Need MDS version at least 2.10.55" && return
16218
16219         local dom=$DIR/$tdir/dom
16220
16221         mkdir -p $DIR/$tdir
16222
16223         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16224
16225         lctl set_param -n mdc.*.stats=clear
16226         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16227         cancel_lru_locks mdc
16228         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
16229         # second stat to check size is cached on client
16230         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
16231         local gls=$(lctl get_param -n mdc.*.stats |
16232                         awk '/ldlm_glimpse/ {print $2}')
16233         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16234         rm -f $dom
16235 }
16236 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
16237
16238 test_271ba() {
16239         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16240                 skip "Need MDS version at least 2.10.55" && return
16241
16242         local dom=$DIR/$tdir/dom
16243
16244         mkdir -p $DIR/$tdir
16245
16246         $LFS setstripe -E 1024K -L mdt -E EOF $dom
16247
16248         lctl set_param -n mdc.*.stats=clear
16249         lctl set_param -n osc.*.stats=clear
16250         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
16251         cancel_lru_locks mdc
16252         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16253         # second stat to check size is cached on client
16254         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
16255         local gls=$(lctl get_param -n mdc.*.stats |
16256                         awk '/ldlm_glimpse/ {print $2}')
16257         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
16258         local gls=$(lctl get_param -n osc.*.stats |
16259                         awk '/ldlm_glimpse/ {print $2}')
16260         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
16261         rm -f $dom
16262 }
16263 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
16264
16265 test_271c() {
16266         # test to be enabled with lock_convert
16267         skip "skipped until lock convert will be implemented" && return
16268
16269         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16270                 skip "Need MDS version at least 2.10.55" && return
16271
16272         local dom=$DIR/$tdir/dom
16273
16274         mkdir -p $DIR/$tdir
16275
16276         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16277
16278         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
16279         local facet=mds$((mdtidx + 1))
16280
16281         cancel_lru_locks mdc
16282         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
16283         createmany -o $dom 1000
16284         lctl set_param -n mdc.*.stats=clear
16285         smalliomany -w $dom 1000 200
16286         lctl get_param -n mdc.*.stats
16287         local enq=$(lctl get_param -n mdc.*.stats |
16288                         awk '/ldlm_ibits_enqueue/ {print $2}')
16289         # Each file has 1 open, 1 IO enqueues, total 2000
16290         # but now we have also +1 getxattr for security.capability, total 3000
16291         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
16292         unlinkmany $dom 1000
16293
16294         cancel_lru_locks mdc
16295         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
16296         createmany -o $dom 1000
16297         lctl set_param -n mdc.*.stats=clear
16298         smalliomany -w $dom 1000 200
16299         lctl get_param -n mdc.*.stats
16300         local enq_2=$(lctl get_param -n mdc.*.stats |
16301                         awk '/ldlm_ibits_enqueue/ {print $2}')
16302         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
16303         # for OPEN and IO lock.
16304         [ $((enq - enq_2)) -ge 1000 ] ||
16305                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
16306         unlinkmany $dom 1000
16307         return 0
16308 }
16309 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
16310
16311 test_275() {
16312         remote_ost_nodsh && skip "remote OST with nodsh" && return
16313         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
16314                 skip "Need OST version >= 2.10.57" && return 0
16315
16316         local file=$DIR/$tfile
16317         local oss
16318
16319         oss=$(comma_list $(osts_nodes))
16320
16321         dd if=/dev/urandom of=$file bs=1M count=2 ||
16322                 error "failed to create a file"
16323         cancel_lru_locks osc
16324
16325         #lock 1
16326         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
16327                 error "failed to read a file"
16328
16329 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
16330         $LCTL set_param fail_loc=0x8000031f
16331
16332         cancel_lru_locks osc &
16333         sleep 1
16334
16335 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
16336         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
16337         #IO takes another lock, but matches the PENDING one
16338         #and places it to the IO RPC
16339         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
16340                 error "failed to read a file with PENDING lock"
16341 }
16342 run_test 275 "Read on a canceled duplicate lock"
16343
16344 test_276() {
16345         remote_ost_nodsh && skip "remote OST with nodsh" && return
16346         local pid
16347
16348         do_facet ost1 "(while true; do \
16349                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
16350                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
16351         pid=$!
16352
16353         for LOOP in $(seq 20); do
16354                 stop ost1
16355                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
16356         done
16357         kill -9 $pid
16358         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
16359                 rm $TMP/sanity_276_pid"
16360 }
16361 run_test 276 "Race between mount and obd_statfs"
16362
16363 cleanup_test_300() {
16364         trap 0
16365         umask $SAVE_UMASK
16366 }
16367 test_striped_dir() {
16368         local mdt_index=$1
16369         local stripe_count
16370         local stripe_index
16371
16372         mkdir -p $DIR/$tdir
16373
16374         SAVE_UMASK=$(umask)
16375         trap cleanup_test_300 RETURN EXIT
16376
16377         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
16378                                                 $DIR/$tdir/striped_dir ||
16379                 error "set striped dir error"
16380
16381         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
16382         [ "$mode" = "755" ] || error "expect 755 got $mode"
16383
16384         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
16385                 error "getdirstripe failed"
16386         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
16387         if [ "$stripe_count" != "2" ]; then
16388                 error "1:stripe_count is $stripe_count, expect 2"
16389         fi
16390         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
16391         if [ "$stripe_count" != "2" ]; then
16392                 error "2:stripe_count is $stripe_count, expect 2"
16393         fi
16394
16395         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
16396         if [ "$stripe_index" != "$mdt_index" ]; then
16397                 error "stripe_index is $stripe_index, expect $mdt_index"
16398         fi
16399
16400         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16401                 error "nlink error after create striped dir"
16402
16403         mkdir $DIR/$tdir/striped_dir/a
16404         mkdir $DIR/$tdir/striped_dir/b
16405
16406         stat $DIR/$tdir/striped_dir/a ||
16407                 error "create dir under striped dir failed"
16408         stat $DIR/$tdir/striped_dir/b ||
16409                 error "create dir under striped dir failed"
16410
16411         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
16412                 error "nlink error after mkdir"
16413
16414         rmdir $DIR/$tdir/striped_dir/a
16415         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
16416                 error "nlink error after rmdir"
16417
16418         rmdir $DIR/$tdir/striped_dir/b
16419         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
16420                 error "nlink error after rmdir"
16421
16422         chattr +i $DIR/$tdir/striped_dir
16423         createmany -o $DIR/$tdir/striped_dir/f 10 &&
16424                 error "immutable flags not working under striped dir!"
16425         chattr -i $DIR/$tdir/striped_dir
16426
16427         rmdir $DIR/$tdir/striped_dir ||
16428                 error "rmdir striped dir error"
16429
16430         cleanup_test_300
16431
16432         true
16433 }
16434
16435 test_300a() {
16436         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16437                 skip "skipped for lustre < 2.7.0" && return
16438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16439         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16440
16441         test_striped_dir 0 || error "failed on striped dir on MDT0"
16442         test_striped_dir 1 || error "failed on striped dir on MDT0"
16443 }
16444 run_test 300a "basic striped dir sanity test"
16445
16446 test_300b() {
16447         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16448                 skip "skipped for lustre < 2.7.0" && return
16449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16450         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16451         local i
16452         local mtime1
16453         local mtime2
16454         local mtime3
16455
16456         test_mkdir $DIR/$tdir || error "mkdir fail"
16457         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16458                 error "set striped dir error"
16459         for i in {0..9}; do
16460                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
16461                 sleep 1
16462                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
16463                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
16464                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
16465                 sleep 1
16466                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
16467                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
16468                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
16469         done
16470         true
16471 }
16472 run_test 300b "check ctime/mtime for striped dir"
16473
16474 test_300c() {
16475         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16476                 skip "skipped for lustre < 2.7.0" && return
16477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16478         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16479         local file_count
16480
16481         mkdir -p $DIR/$tdir
16482         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
16483                 error "set striped dir error"
16484
16485         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
16486                 error "chown striped dir failed"
16487
16488         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
16489                 error "create 5k files failed"
16490
16491         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
16492
16493         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
16494
16495         rm -rf $DIR/$tdir
16496 }
16497 run_test 300c "chown && check ls under striped directory"
16498
16499 test_300d() {
16500         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
16501                 skip "skipped for lustre < 2.7.0" && return
16502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16503         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16504         local stripe_count
16505         local file
16506
16507         mkdir -p $DIR/$tdir
16508         $SETSTRIPE -c 2 $DIR/$tdir
16509
16510         #local striped directory
16511         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16512                 error "set striped dir error"
16513         createmany -o $DIR/$tdir/striped_dir/f 10 ||
16514                 error "create 10 files failed"
16515
16516         #remote striped directory
16517         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
16518                 error "set striped dir error"
16519         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
16520                 error "create 10 files failed"
16521
16522         for file in $(find $DIR/$tdir); do
16523                 stripe_count=$($GETSTRIPE -c $file)
16524                 [ $stripe_count -eq 2 ] ||
16525                         error "wrong stripe $stripe_count for $file"
16526         done
16527
16528         rm -rf $DIR/$tdir
16529 }
16530 run_test 300d "check default stripe under striped directory"
16531
16532 test_300e() {
16533         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16534                 skip "Need MDS version at least 2.7.55" && return
16535         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16536         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16537         local stripe_count
16538         local file
16539
16540         mkdir -p $DIR/$tdir
16541
16542         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16543                 error "set striped dir error"
16544
16545         touch $DIR/$tdir/striped_dir/a
16546         touch $DIR/$tdir/striped_dir/b
16547         touch $DIR/$tdir/striped_dir/c
16548
16549         mkdir $DIR/$tdir/striped_dir/dir_a
16550         mkdir $DIR/$tdir/striped_dir/dir_b
16551         mkdir $DIR/$tdir/striped_dir/dir_c
16552
16553         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
16554                 error "set striped adir under striped dir error"
16555
16556         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
16557                 error "set striped bdir under striped dir error"
16558
16559         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
16560                 error "set striped cdir under striped dir error"
16561
16562         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
16563                 error "rename dir under striped dir fails"
16564
16565         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
16566                 error "rename dir under different stripes fails"
16567
16568         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
16569                 error "rename file under striped dir should succeed"
16570
16571         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
16572                 error "rename dir under striped dir should succeed"
16573
16574         rm -rf $DIR/$tdir
16575 }
16576 run_test 300e "check rename under striped directory"
16577
16578 test_300f() {
16579         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16580                 skip "Need MDS version at least 2.7.55" && return
16581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16582         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16583         local stripe_count
16584         local file
16585
16586         rm -rf $DIR/$tdir
16587         mkdir -p $DIR/$tdir
16588
16589         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
16590                 error "set striped dir error"
16591
16592         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
16593                 error "set striped dir error"
16594
16595         touch $DIR/$tdir/striped_dir/a
16596         mkdir $DIR/$tdir/striped_dir/dir_a
16597         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
16598                 error "create striped dir under striped dir fails"
16599
16600         touch $DIR/$tdir/striped_dir1/b
16601         mkdir $DIR/$tdir/striped_dir1/dir_b
16602         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
16603                 error "create striped dir under striped dir fails"
16604
16605         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
16606                 error "rename dir under different striped dir should fail"
16607
16608         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
16609                 error "rename striped dir under diff striped dir should fail"
16610
16611         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
16612                 error "rename file under diff striped dirs fails"
16613
16614         rm -rf $DIR/$tdir
16615 }
16616 run_test 300f "check rename cross striped directory"
16617
16618 test_300_check_default_striped_dir()
16619 {
16620         local dirname=$1
16621         local default_count=$2
16622         local default_index=$3
16623         local stripe_count
16624         local stripe_index
16625         local dir_stripe_index
16626         local dir
16627
16628         echo "checking $dirname $default_count $default_index"
16629         $LFS setdirstripe -D -c $default_count -i $default_index \
16630                                 -t all_char $DIR/$tdir/$dirname ||
16631                 error "set default stripe on striped dir error"
16632         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
16633         [ $stripe_count -eq $default_count ] ||
16634                 error "expect $default_count get $stripe_count for $dirname"
16635
16636         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
16637         [ $stripe_index -eq $default_index ] ||
16638                 error "expect $default_index get $stripe_index for $dirname"
16639
16640         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
16641                                                 error "create dirs failed"
16642
16643         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
16644         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
16645         for dir in $(find $DIR/$tdir/$dirname/*); do
16646                 stripe_count=$($LFS getdirstripe -c $dir)
16647                 [ $stripe_count -eq $default_count ] ||
16648                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
16649                 error "stripe count $default_count != $stripe_count for $dir"
16650
16651                 stripe_index=$($LFS getdirstripe -i $dir)
16652                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
16653                         error "$stripe_index != $default_index for $dir"
16654
16655                 #check default stripe
16656                 stripe_count=$($LFS getdirstripe -D -c $dir)
16657                 [ $stripe_count -eq $default_count ] ||
16658                 error "default count $default_count != $stripe_count for $dir"
16659
16660                 stripe_index=$($LFS getdirstripe -D -i $dir)
16661                 [ $stripe_index -eq $default_index ] ||
16662                 error "default index $default_index != $stripe_index for $dir"
16663         done
16664         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
16665 }
16666
16667 test_300g() {
16668         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16669                 skip "Need MDS version at least 2.7.55" && return
16670         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16671         local dir
16672         local stripe_count
16673         local stripe_index
16674
16675         mkdir $DIR/$tdir
16676         mkdir $DIR/$tdir/normal_dir
16677
16678         #Checking when client cache stripe index
16679         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
16680         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
16681                 error "create striped_dir failed"
16682
16683         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
16684                 error "create dir0 fails"
16685         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
16686         [ $stripe_index -eq 0 ] ||
16687                 error "dir0 expect index 0 got $stripe_index"
16688
16689         mkdir $DIR/$tdir/striped_dir/dir1 ||
16690                 error "create dir1 fails"
16691         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
16692         [ $stripe_index -eq 1 ] ||
16693                 error "dir1 expect index 1 got $stripe_index"
16694
16695         #check default stripe count/stripe index
16696         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
16697         test_300_check_default_striped_dir normal_dir 1 0
16698         test_300_check_default_striped_dir normal_dir 2 1
16699         test_300_check_default_striped_dir normal_dir 2 -1
16700
16701         #delete default stripe information
16702         echo "delete default stripeEA"
16703         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
16704                 error "set default stripe on striped dir error"
16705
16706         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
16707         for dir in $(find $DIR/$tdir/normal_dir/*); do
16708                 stripe_count=$($LFS getdirstripe -c $dir)
16709                 [ $stripe_count -eq 0 ] ||
16710                         error "expect 1 get $stripe_count for $dir"
16711                 stripe_index=$($LFS getdirstripe -i $dir)
16712                 [ $stripe_index -eq 0 ] ||
16713                         error "expect 0 get $stripe_index for $dir"
16714         done
16715 }
16716 run_test 300g "check default striped directory for normal directory"
16717
16718 test_300h() {
16719         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16720                 skip "Need MDS version at least 2.7.55" && return
16721         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16722         local dir
16723         local stripe_count
16724
16725         mkdir $DIR/$tdir
16726         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
16727                 error "set striped dir error"
16728
16729         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
16730         test_300_check_default_striped_dir striped_dir 1 0
16731         test_300_check_default_striped_dir striped_dir 2 1
16732         test_300_check_default_striped_dir striped_dir 2 -1
16733
16734         #delete default stripe information
16735         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
16736                 error "set default stripe on striped dir error"
16737
16738         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
16739         for dir in $(find $DIR/$tdir/striped_dir/*); do
16740                 stripe_count=$($LFS getdirstripe -c $dir)
16741                 [ $stripe_count -eq 0 ] ||
16742                         error "expect 1 get $stripe_count for $dir"
16743         done
16744 }
16745 run_test 300h "check default striped directory for striped directory"
16746
16747 test_300i() {
16748         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16749                 skip "Need MDS version at least 2.7.55" && return
16750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16751         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16752         local stripe_count
16753         local file
16754
16755         mkdir $DIR/$tdir
16756
16757         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
16758                 error "set striped dir error"
16759
16760         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
16761                 error "create files under striped dir failed"
16762
16763         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
16764                 error "set striped hashdir error"
16765
16766         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
16767                 error "create dir0 under hash dir failed"
16768         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
16769                 error "create dir1 under hash dir failed"
16770
16771         # unfortunately, we need to umount to clear dir layout cache for now
16772         # once we fully implement dir layout, we can drop this
16773         umount_client $MOUNT || error "umount failed"
16774         mount_client $MOUNT || error "mount failed"
16775
16776         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
16777         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
16778         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
16779
16780         #set the stripe to be unknown hash type
16781         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
16782         $LCTL set_param fail_loc=0x1901
16783         for ((i = 0; i < 10; i++)); do
16784                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
16785                         error "stat f-$i failed"
16786                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
16787         done
16788
16789         touch $DIR/$tdir/striped_dir/f0 &&
16790                 error "create under striped dir with unknown hash should fail"
16791
16792         $LCTL set_param fail_loc=0
16793
16794         umount_client $MOUNT || error "umount failed"
16795         mount_client $MOUNT || error "mount failed"
16796
16797         return 0
16798 }
16799 run_test 300i "client handle unknown hash type striped directory"
16800
16801 test_300j() {
16802         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16803         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16804                 skip "Need MDS version at least 2.7.55" && return
16805         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16806         local stripe_count
16807         local file
16808
16809         mkdir $DIR/$tdir
16810
16811         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
16812         $LCTL set_param fail_loc=0x1702
16813         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
16814                 error "set striped dir error"
16815
16816         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
16817                 error "create files under striped dir failed"
16818
16819         $LCTL set_param fail_loc=0
16820
16821         rm -rf $DIR/$tdir || error "unlink striped dir fails"
16822
16823         return 0
16824 }
16825 run_test 300j "test large update record"
16826
16827 test_300k() {
16828         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16829                 skip "Need MDS version at least 2.7.55" && return
16830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16831         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16832         local stripe_count
16833         local file
16834
16835         mkdir $DIR/$tdir
16836
16837         #define OBD_FAIL_LARGE_STRIPE   0x1703
16838         $LCTL set_param fail_loc=0x1703
16839         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
16840                 error "set striped dir error"
16841         $LCTL set_param fail_loc=0
16842
16843         $LFS getdirstripe $DIR/$tdir/striped_dir ||
16844                 error "getstripeddir fails"
16845         rm -rf $DIR/$tdir/striped_dir ||
16846                 error "unlink striped dir fails"
16847
16848         return 0
16849 }
16850 run_test 300k "test large striped directory"
16851
16852 test_300l() {
16853         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16854                 skip "Need MDS version at least 2.7.55" && return
16855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16856         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16857         local stripe_index
16858
16859         test_mkdir -p $DIR/$tdir/striped_dir
16860         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
16861                         error "chown $RUNAS_ID failed"
16862         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
16863                 error "set default striped dir failed"
16864
16865         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
16866         $LCTL set_param fail_loc=0x80000158
16867         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
16868
16869         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
16870         [ $stripe_index -eq 1 ] ||
16871                 error "expect 1 get $stripe_index for $dir"
16872 }
16873 run_test 300l "non-root user to create dir under striped dir with stale layout"
16874
16875 test_300m() {
16876         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16877                 skip "Need MDS version at least 2.7.55" && return
16878         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16879         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
16880
16881         mkdir -p $DIR/$tdir/striped_dir
16882         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
16883                 error "set default stripes dir error"
16884
16885         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
16886
16887         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
16888         [ $stripe_count -eq 0 ] ||
16889                         error "expect 0 get $stripe_count for a"
16890
16891         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
16892                 error "set default stripes dir error"
16893
16894         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
16895
16896         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
16897         [ $stripe_count -eq 0 ] ||
16898                         error "expect 0 get $stripe_count for b"
16899
16900         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
16901                 error "set default stripes dir error"
16902
16903         mkdir $DIR/$tdir/striped_dir/c &&
16904                 error "default stripe_index is invalid, mkdir c should fails"
16905
16906         rm -rf $DIR/$tdir || error "rmdir fails"
16907 }
16908 run_test 300m "setstriped directory on single MDT FS"
16909
16910 cleanup_300n() {
16911         local list=$(comma_list $(mdts_nodes))
16912
16913         trap 0
16914         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16915 }
16916
16917 test_300n() {
16918         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16919                 skip "Need MDS version at least 2.7.55" && return
16920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16921         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16922         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16923
16924         local stripe_index
16925         local list=$(comma_list $(mdts_nodes))
16926
16927         trap cleanup_300n RETURN EXIT
16928         mkdir -p $DIR/$tdir
16929         chmod 777 $DIR/$tdir
16930         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
16931                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16932                 error "create striped dir succeeds with gid=0"
16933
16934         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16935         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
16936                 error "create striped dir fails with gid=-1"
16937
16938         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16939         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
16940                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16941                 error "set default striped dir succeeds with gid=0"
16942
16943
16944         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16945         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
16946                 error "set default striped dir fails with gid=-1"
16947
16948
16949         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16950         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
16951                                         error "create test_dir fails"
16952         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
16953                                         error "create test_dir1 fails"
16954         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
16955                                         error "create test_dir2 fails"
16956         cleanup_300n
16957 }
16958 run_test 300n "non-root user to create dir under striped dir with default EA"
16959
16960 test_300o() {
16961         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16962                 skip "Need MDS version at least 2.7.55" && return
16963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16964         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16965         local numfree1
16966         local numfree2
16967
16968         mkdir -p $DIR/$tdir
16969
16970         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
16971         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
16972         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
16973                 skip "not enough free inodes $numfree1 $numfree2"
16974                 return
16975         fi
16976
16977         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
16978         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
16979         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
16980                 skip "not enough free space $numfree1 $numfree2"
16981                 return
16982         fi
16983
16984         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
16985                 error "setdirstripe fails"
16986
16987         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
16988                 error "create dirs fails"
16989
16990         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
16991         ls $DIR/$tdir/striped_dir > /dev/null ||
16992                 error "ls striped dir fails"
16993         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
16994                 error "unlink big striped dir fails"
16995 }
16996 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
16997
16998 test_300p() {
16999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17000         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17001         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17002
17003         mkdir -p $DIR/$tdir
17004
17005         #define OBD_FAIL_OUT_ENOSPC     0x1704
17006         do_facet mds2 lctl set_param fail_loc=0x80001704
17007         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
17008                  && error "create striped directory should fail"
17009
17010         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
17011
17012         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
17013         true
17014 }
17015 run_test 300p "create striped directory without space"
17016
17017 test_300q() {
17018         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17019         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17020
17021         local fd=$(free_fd)
17022         local cmd="exec $fd<$tdir"
17023         cd $DIR
17024         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
17025         eval $cmd
17026         cmd="exec $fd<&-"
17027         trap "eval $cmd" EXIT
17028         cd $tdir || error "cd $tdir fails"
17029         rmdir  ../$tdir || error "rmdir $tdir fails"
17030         mkdir local_dir && error "create dir succeeds"
17031         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
17032         eval $cmd
17033         return 0
17034 }
17035 run_test 300q "create remote directory under orphan directory"
17036
17037 prepare_remote_file() {
17038         mkdir $DIR/$tdir/src_dir ||
17039                 error "create remote source failed"
17040
17041         cp /etc/hosts $DIR/$tdir/src_dir/a ||
17042                  error "cp to remote source failed"
17043         touch $DIR/$tdir/src_dir/a
17044
17045         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
17046                 error "create remote target dir failed"
17047
17048         touch $DIR/$tdir/tgt_dir/b
17049
17050         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
17051                 error "rename dir cross MDT failed!"
17052
17053         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
17054                 error "src_child still exists after rename"
17055
17056         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
17057                 error "missing file(a) after rename"
17058
17059         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
17060                 error "diff after rename"
17061 }
17062
17063 test_310a() {
17064         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
17065         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17066         local remote_file=$DIR/$tdir/tgt_dir/b
17067
17068         mkdir -p $DIR/$tdir
17069
17070         prepare_remote_file || error "prepare remote file failed"
17071
17072         #open-unlink file
17073         $OPENUNLINK $remote_file $remote_file ||
17074                 error "openunlink $remote_file failed"
17075         $CHECKSTAT -a $remote_file || error "$remote_file exists"
17076 }
17077 run_test 310a "open unlink remote file"
17078
17079 test_310b() {
17080         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
17081         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17082         local remote_file=$DIR/$tdir/tgt_dir/b
17083
17084         mkdir -p $DIR/$tdir
17085
17086         prepare_remote_file || error "prepare remote file failed"
17087
17088         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17089         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
17090         $CHECKSTAT -t file $remote_file || error "check file failed"
17091 }
17092 run_test 310b "unlink remote file with multiple links while open"
17093
17094 test_310c() {
17095         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
17096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17097         local remote_file=$DIR/$tdir/tgt_dir/b
17098
17099         mkdir -p $DIR/$tdir
17100
17101         prepare_remote_file || error "prepare remote file failed"
17102
17103         ln $remote_file $DIR/$tfile || error "link failed for remote file"
17104         multiop_bg_pause $remote_file O_uc ||
17105                         error "mulitop failed for remote file"
17106         MULTIPID=$!
17107         $MULTIOP $DIR/$tfile Ouc
17108         kill -USR1 $MULTIPID
17109         wait $MULTIPID
17110 }
17111 run_test 310c "open-unlink remote file with multiple links"
17112
17113 #LU-4825
17114 test_311() {
17115         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
17116         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
17117                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
17118         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17119         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17120
17121         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
17122
17123         mkdir -p $DIR/$tdir
17124         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
17125         createmany -o $DIR/$tdir/$tfile. 1000
17126
17127         # statfs data is not real time, let's just calculate it
17128         old_iused=$((old_iused + 1000))
17129
17130         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
17131                         osp.*OST0000*MDT0000.create_count")
17132         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
17133                                 osp.*OST0000*MDT0000.max_create_count")
17134         for idx in $(seq $MDSCOUNT); do
17135                 do_facet mds$idx "lctl set_param -n \
17136                         osp.*OST0000*MDT000?.max_create_count=0"
17137         done
17138
17139         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
17140         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
17141         [ $index -ne 0 ] || error "$tfile stripe index is 0"
17142
17143         unlinkmany $DIR/$tdir/$tfile. 1000
17144
17145         for idx in $(seq $MDSCOUNT); do
17146                 do_facet mds$idx "lctl set_param -n \
17147                         osp.*OST0000*MDT000?.max_create_count=$max_count"
17148                 do_facet mds$idx "lctl set_param -n \
17149                         osp.*OST0000*MDT000?.create_count=$count"
17150         done
17151
17152         local new_iused
17153         for i in $(seq 120); do
17154                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
17155                 # system may be too busy to destroy all objs in time, use
17156                 # a somewhat small value to not fail autotest
17157                 [ $((old_iused - new_iused)) -gt 400 ] && break
17158                 sleep 1
17159         done
17160
17161         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
17162         [ $((old_iused - new_iused)) -gt 400 ] ||
17163                 error "objs not destroyed after unlink"
17164 }
17165 run_test 311 "disable OSP precreate, and unlink should destroy objs"
17166
17167 zfs_oid_to_objid()
17168 {
17169         local ost=$1
17170         local objid=$2
17171
17172         local vdevdir=$(dirname $(facet_vdevice $ost))
17173         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
17174         local zfs_zapid=$(do_facet $ost $cmd |
17175                           grep -w "/O/0/d$((objid%32))" -C 5 |
17176                           awk '/Object/{getline; print $1}')
17177         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
17178                           awk "/$objid = /"'{printf $3}')
17179
17180         echo $zfs_objid
17181 }
17182
17183 zfs_object_blksz() {
17184         local ost=$1
17185         local objid=$2
17186
17187         local vdevdir=$(dirname $(facet_vdevice $ost))
17188         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
17189         local blksz=$(do_facet $ost $cmd $objid |
17190                       awk '/dblk/{getline; printf $4}')
17191
17192         case "${blksz: -1}" in
17193                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
17194                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
17195                 *) ;;
17196         esac
17197
17198         echo $blksz
17199 }
17200
17201 test_312() { # LU-4856
17202         remote_ost_nodsh && skip "remote OST with nodsh" && return
17203
17204         [ $(facet_fstype ost1) = "zfs" ] ||
17205                 { skip "the test only applies to zfs" && return; }
17206
17207         local max_blksz=$(do_facet ost1 \
17208                           $ZFS get -p recordsize $(facet_device ost1) |
17209                           awk '!/VALUE/{print $3}')
17210         local min_blksz=$(getconf PAGE_SIZE)
17211
17212         # to make life a little bit easier
17213         $LFS mkdir -c 1 -i 0 $DIR/$tdir
17214         $LFS setstripe -c 1 -i 0 $DIR/$tdir
17215
17216         local tf=$DIR/$tdir/$tfile
17217         touch $tf
17218         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17219
17220         # Get ZFS object id
17221         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17222
17223         # block size change by sequential over write
17224         local blksz
17225         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
17226                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
17227
17228                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17229                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
17230         done
17231         rm -f $tf
17232
17233         # block size change by sequential append write
17234         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
17235         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17236         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17237
17238         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
17239                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
17240                         oflag=sync conv=notrunc
17241
17242                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
17243                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
17244                         error "blksz error, actual $blksz, "    \
17245                                 "expected: 2 * $count * $min_blksz"
17246         done
17247         rm -f $tf
17248
17249         # random write
17250         touch $tf
17251         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
17252         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
17253
17254         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
17255         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17256         [ $blksz -eq $min_blksz ] ||
17257                 error "blksz error: $blksz, expected: $min_blksz"
17258
17259         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
17260         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17261         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
17262
17263         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
17264         blksz=$(zfs_object_blksz ost1 $zfs_objid)
17265         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
17266 }
17267 run_test 312 "make sure ZFS adjusts its block size by write pattern"
17268
17269 test_313() {
17270         remote_ost_nodsh && skip "remote OST with nodsh" && return
17271
17272         local file=$DIR/$tfile
17273         rm -f $file
17274         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
17275
17276         # define OBD_FAIL_TGT_RCVD_EIO           0x720
17277         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17278         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
17279                 error "write should failed"
17280         do_facet ost1 "$LCTL set_param fail_loc=0"
17281         rm -f $file
17282 }
17283 run_test 313 "io should fail after last_rcvd update fail"
17284
17285 test_314() {
17286         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
17287
17288         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
17289         do_facet ost1 "$LCTL set_param fail_loc=0x720"
17290         rm -f $DIR/$tfile
17291         wait_delete_completed
17292         do_facet ost1 "$LCTL set_param fail_loc=0"
17293 }
17294 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
17295
17296 test_315() { # LU-618
17297         local file=$DIR/$tfile
17298         rm -f $file
17299
17300         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4096000c
17301         $MULTIOP $file oO_RDONLY:r4096000_c &
17302         PID=$!
17303
17304         sleep 2
17305
17306         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
17307         kill -USR1 $PID
17308
17309         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
17310         rm -f $file
17311 }
17312 run_test 315 "read should be accounted"
17313
17314 test_316() {
17315         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
17316         large_xattr_enabled || { skip "large_xattr disabled" && return; }
17317
17318         rm -rf $DIR/$tdir/d
17319         mkdir -p $DIR/$tdir/d
17320         chown nobody $DIR/$tdir/d
17321         touch $DIR/$tdir/d/file
17322
17323         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
17324 }
17325 run_test 316 "lfs mv"
17326
17327 test_fake_rw() {
17328         local read_write=$1
17329         if [ "$read_write" = "write" ]; then
17330                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
17331         elif [ "$read_write" = "read" ]; then
17332                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
17333         else
17334                 error "argument error"
17335         fi
17336
17337         # turn off debug for performance testing
17338         local saved_debug=$($LCTL get_param -n debug)
17339         $LCTL set_param debug=0
17340
17341         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
17342
17343         # get ost1 size - lustre-OST0000
17344         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
17345         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
17346         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
17347
17348         if [ "$read_write" = "read" ]; then
17349                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
17350         fi
17351
17352         local start_time=$(date +%s.%N)
17353         $dd_cmd bs=1M count=$blocks oflag=sync ||
17354                 error "real dd $read_write error"
17355         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
17356
17357         if [ "$read_write" = "write" ]; then
17358                 rm -f $DIR/$tfile
17359         fi
17360
17361         # define OBD_FAIL_OST_FAKE_RW           0x238
17362         do_facet ost1 $LCTL set_param fail_loc=0x238
17363
17364         local start_time=$(date +%s.%N)
17365         $dd_cmd bs=1M count=$blocks oflag=sync ||
17366                 error "fake dd $read_write error"
17367         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
17368
17369         if [ "$read_write" = "write" ]; then
17370                 # verify file size
17371                 cancel_lru_locks osc
17372                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
17373                         error "$tfile size not $blocks MB"
17374         fi
17375         do_facet ost1 $LCTL set_param fail_loc=0
17376
17377         echo "fake $read_write $duration_fake vs. normal $read_write" \
17378                 "$duration in seconds"
17379         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
17380                 error_not_in_vm "fake write is slower"
17381
17382         $LCTL set_param -n debug="$saved_debug"
17383         rm -f $DIR/$tfile
17384 }
17385 test_399a() { # LU-7655 for OST fake write
17386         remote_ost_nodsh && skip "remote OST with nodsh" && return
17387
17388         test_fake_rw write
17389 }
17390 run_test 399a "fake write should not be slower than normal write"
17391
17392 test_399b() { # LU-8726 for OST fake read
17393         remote_ost_nodsh && skip "remote OST with nodsh" && return
17394
17395         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
17396                 skip "ldiskfs only test" && return 0
17397         fi
17398         test_fake_rw read
17399 }
17400 run_test 399b "fake read should not be slower than normal read"
17401
17402 test_400a() { # LU-1606, was conf-sanity test_74
17403         local extra_flags=''
17404         local out=$TMP/$tfile
17405         local prefix=/usr/include/lustre
17406         local prog
17407
17408         if ! which $CC > /dev/null 2>&1; then
17409                 skip_env "$CC is not installed"
17410                 return 0
17411         fi
17412
17413         if ! [[ -d $prefix ]]; then
17414                 # Assume we're running in tree and fixup the include path.
17415                 extra_flags+=" -I$LUSTRE/include"
17416                 extra_flags+=" -L$LUSTRE/utils"
17417         fi
17418
17419         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
17420                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
17421                         error "client api broken"
17422         done
17423         rm -f $out
17424 }
17425 run_test 400a "Lustre client api program can compile and link"
17426
17427 test_400b() { # LU-1606, LU-5011
17428         local header
17429         local out=$TMP/$tfile
17430         local prefix=/usr/include/linux/lustre
17431
17432         # We use a hard coded prefix so that this test will not fail
17433         # when run in tree. There are headers in lustre/include/lustre/
17434         # that are not packaged (like lustre_idl.h) and have more
17435         # complicated include dependencies (like config.h and lnet/types.h).
17436         # Since this test about correct packaging we just skip them when
17437         # they don't exist (see below) rather than try to fixup cppflags.
17438
17439         if ! which $CC > /dev/null 2>&1; then
17440                 skip_env "$CC is not installed"
17441                 return 0
17442         fi
17443
17444         for header in $prefix/*.h; do
17445                 if ! [[ -f "$header" ]]; then
17446                         continue
17447                 fi
17448
17449                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
17450                         continue # lustre_ioctl.h is internal header
17451                 fi
17452
17453                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
17454                         error "cannot compile '$header'"
17455         done
17456         rm -f $out
17457 }
17458 run_test 400b "packaged headers can be compiled"
17459
17460 test_401a() { #LU-7437
17461         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
17462         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
17463                 return
17464         #count the number of parameters by "list_param -R"
17465         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
17466         #count the number of parameters by listing proc files
17467         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
17468         echo "proc_dirs='$proc_dirs'"
17469         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
17470         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
17471                       sort -u | wc -l)
17472
17473         [ $params -eq $procs ] ||
17474                 error "found $params parameters vs. $procs proc files"
17475
17476         # test the list_param -D option only returns directories
17477         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
17478         #count the number of parameters by listing proc directories
17479         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
17480                 sort -u | wc -l)
17481
17482         [ $params -eq $procs ] ||
17483                 error "found $params parameters vs. $procs proc files"
17484 }
17485 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
17486
17487 test_401b() {
17488         local save=$($LCTL get_param -n jobid_var)
17489         local tmp=testing
17490
17491         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
17492                 error "no error returned when setting bad parameters"
17493
17494         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
17495         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
17496
17497         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
17498         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
17499         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
17500 }
17501 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
17502
17503 test_401c() {
17504         local jobid_var_old=$($LCTL get_param -n jobid_var)
17505         local jobid_var_new
17506
17507         $LCTL set_param jobid_var= &&
17508                 error "no error returned for 'set_param a='"
17509
17510         jobid_var_new=$($LCTL get_param -n jobid_var)
17511         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17512                 error "jobid_var was changed by setting without value"
17513
17514         $LCTL set_param jobid_var &&
17515                 error "no error returned for 'set_param a'"
17516
17517         jobid_var_new=$($LCTL get_param -n jobid_var)
17518         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
17519                 error "jobid_var was changed by setting without value"
17520 }
17521 run_test 401c "Verify 'lctl set_param' without value fails in either format."
17522
17523 test_401d() {
17524         local jobid_var_old=$($LCTL get_param -n jobid_var)
17525         local jobid_var_new
17526         local new_value="foo=bar"
17527
17528         $LCTL set_param jobid_var=$new_value ||
17529                 error "'set_param a=b' did not accept a value containing '='"
17530
17531         jobid_var_new=$($LCTL get_param -n jobid_var)
17532         [[ "$jobid_var_new" == "$new_value" ]] ||
17533                 error "'set_param a=b' failed on a value containing '='"
17534
17535         # Reset the jobid_var to test the other format
17536         $LCTL set_param jobid_var=$jobid_var_old
17537         jobid_var_new=$($LCTL get_param -n jobid_var)
17538         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17539                 error "failed to reset jobid_var"
17540
17541         $LCTL set_param jobid_var $new_value ||
17542                 error "'set_param a b' did not accept a value containing '='"
17543
17544         jobid_var_new=$($LCTL get_param -n jobid_var)
17545         [[ "$jobid_var_new" == "$new_value" ]] ||
17546                 error "'set_param a b' failed on a value containing '='"
17547
17548         $LCTL set_param jobid_var $jobid_var_old
17549         jobid_var_new=$($LCTL get_param -n jobid_var)
17550         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
17551                 error "failed to reset jobid_var"
17552 }
17553 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
17554
17555 test_402() {
17556         local server_version=$(lustre_version_code $SINGLEMDS)
17557         [[ $server_version -ge $(version_code 2.7.66) ]] ||
17558         [[ $server_version -ge $(version_code 2.7.18.4) &&
17559                 $server_version -lt $(version_code 2.7.50) ]] ||
17560         [[ $server_version -ge $(version_code 2.7.2) &&
17561                 $server_version -lt $(version_code 2.7.11) ]] ||
17562                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
17563                         return; }
17564         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17565         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
17566 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
17567         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
17568         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
17569                 echo "Touch failed - OK"
17570 }
17571 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
17572
17573 test_403() {
17574         local file1=$DIR/$tfile.1
17575         local file2=$DIR/$tfile.2
17576         local tfile=$TMP/$tfile
17577
17578         rm -f $file1 $file2 $tfile
17579
17580         touch $file1
17581         ln $file1 $file2
17582
17583         # 30 sec OBD_TIMEOUT in ll_getattr()
17584         # right before populating st_nlink
17585         $LCTL set_param fail_loc=0x80001409
17586         stat -c %h $file1 > $tfile &
17587
17588         # create an alias, drop all locks and reclaim the dentry
17589         < $file2
17590         cancel_lru_locks mdc
17591         cancel_lru_locks osc
17592         sysctl -w vm.drop_caches=2
17593
17594         wait
17595
17596         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
17597
17598         rm -f $tfile $file1 $file2
17599 }
17600 run_test 403 "i_nlink should not drop to zero due to aliasing"
17601
17602 test_404() { # LU-6601
17603         local server_version=$(lustre_version_code $SINGLEMDS)
17604         [[ $server_version -ge $(version_code 2.8.53) ]] ||
17605                 { skip "Need server version newer than 2.8.52"; return 0; }
17606
17607         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17608         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
17609                 awk '/osp .*-osc-MDT/ { print $4}')
17610
17611         local osp
17612         for osp in $mosps; do
17613                 echo "Deactivate: " $osp
17614                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
17615                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17616                         awk -vp=$osp '$4 == p { print $2 }')
17617                 [ $stat = IN ] || {
17618                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17619                         error "deactivate error"
17620                 }
17621                 echo "Activate: " $osp
17622                 do_facet $SINGLEMDS $LCTL --device %$osp activate
17623                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
17624                         awk -vp=$osp '$4 == p { print $2 }')
17625                 [ $stat = UP ] || {
17626                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
17627                         error "activate error"
17628                 }
17629         done
17630 }
17631 run_test 404 "validate manual {de}activated works properly for OSPs"
17632
17633 test_405() {
17634         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
17635         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
17636                 skip "Layout swap lock is not supported" && return
17637
17638         check_swap_layouts_support && return 0
17639
17640         test_mkdir $DIR/$tdir
17641         swap_lock_test -d $DIR/$tdir ||
17642                 error "One layout swap locked test failed"
17643 }
17644 run_test 405 "Various layout swap lock tests"
17645
17646 test_406() {
17647         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17648         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
17649         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
17650         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17651         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
17652                 skip "Need MDS version at least 2.8.50" && return
17653
17654         local def_stripe_size=$($LFS getstripe -S $MOUNT)
17655         local test_pool=$TESTNAME
17656
17657         if ! combined_mgs_mds ; then
17658                 mount_mgs_client
17659         fi
17660         pool_add $test_pool || error "pool_add failed"
17661         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
17662                 error "pool_add_targets failed"
17663
17664         save_layout_restore_at_exit $MOUNT
17665
17666         # parent set default stripe count only, child will stripe from both
17667         # parent and fs default
17668         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
17669                 error "setstripe $MOUNT failed"
17670         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
17671         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
17672         for i in $(seq 10); do
17673                 local f=$DIR/$tdir/$tfile.$i
17674                 touch $f || error "touch failed"
17675                 local count=$($LFS getstripe -c $f)
17676                 [ $count -eq $OSTCOUNT ] ||
17677                         error "$f stripe count $count != $OSTCOUNT"
17678                 local offset=$($LFS getstripe -i $f)
17679                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
17680                 local size=$($LFS getstripe -S $f)
17681                 [ $size -eq $((def_stripe_size * 2)) ] ||
17682                         error "$f stripe size $size != $((def_stripe_size * 2))"
17683                 local pool=$($LFS getstripe -p $f)
17684                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
17685         done
17686
17687         # change fs default striping, delete parent default striping, now child
17688         # will stripe from new fs default striping only
17689         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
17690                 error "change $MOUNT default stripe failed"
17691         $LFS setstripe -c 0 $DIR/$tdir ||
17692                 error "delete $tdir default stripe failed"
17693         for i in $(seq 11 20); do
17694                 local f=$DIR/$tdir/$tfile.$i
17695                 touch $f || error "touch $f failed"
17696                 local count=$($LFS getstripe -c $f)
17697                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
17698                 local offset=$($LFS getstripe -i $f)
17699                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
17700                 local size=$($LFS getstripe -S $f)
17701                 [ $size -eq $def_stripe_size ] ||
17702                         error "$f stripe size $size != $def_stripe_size"
17703                 local pool=$($LFS getstripe -p $f)
17704                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
17705         done
17706
17707         unlinkmany $DIR/$tdir/$tfile. 1 20
17708
17709         local f=$DIR/$tdir/$tfile
17710         pool_remove_all_targets $test_pool $f
17711         pool_remove $test_pool $f
17712
17713         if ! combined_mgs_mds ; then
17714                 umount_mgs_client
17715         fi
17716 }
17717 run_test 406 "DNE support fs default striping"
17718
17719 test_407() {
17720         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
17721         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
17722                 skip "Need MDS version at least 2.8.55" && return
17723         remote_mds_nodsh && skip "remote MDS with nodsh" && return
17724
17725         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
17726                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
17727         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
17728                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
17729         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
17730
17731         #define OBD_FAIL_DT_TXN_STOP    0x2019
17732         for idx in $(seq $MDSCOUNT); do
17733                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
17734         done
17735         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
17736         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
17737                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
17738         true
17739 }
17740 run_test 407 "transaction fail should cause operation fail"
17741
17742 test_408() {
17743         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
17744
17745         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
17746         lctl set_param fail_loc=0x8000040a
17747         # let ll_prepare_partial_page() fail
17748         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
17749
17750         rm -f $DIR/$tfile
17751
17752         # create at least 100 unused inodes so that
17753         # shrink_icache_memory(0) should not return 0
17754         touch $DIR/$tfile-{0..100}
17755         rm -f $DIR/$tfile-{0..100}
17756         sync
17757
17758         echo 2 > /proc/sys/vm/drop_caches
17759 }
17760 run_test 408 "drop_caches should not hang due to page leaks"
17761
17762 test_409()
17763 {
17764         [ $MDSCOUNT -lt 2 ] &&
17765                 skip "We need at least 2 MDTs for this test" && return
17766
17767         check_mount_and_prep
17768
17769         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
17770         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
17771         touch $DIR/$tdir/guard || error "(2) Fail to create"
17772
17773         local PREFIX=$(str_repeat 'A' 128)
17774         echo "Create 1K hard links start at $(date)"
17775         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
17776                 error "(3) Fail to hard link"
17777
17778         echo "Links count should be right although linkEA overflow"
17779         stat $DIR/$tdir/guard || error "(4) Fail to stat"
17780         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
17781         [ $linkcount -eq 1001 ] ||
17782                 error "(5) Unexpected hard links count: $linkcount"
17783
17784         echo "List all links start at $(date)"
17785         ls -l $DIR/$tdir/foo > /dev/null ||
17786                 error "(6) Fail to list $DIR/$tdir/foo"
17787
17788         echo "Unlink hard links start at $(date)"
17789         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
17790                 error "(7) Fail to unlink"
17791 }
17792 run_test 409 "Large amount of cross-MDTs hard links on the same file"
17793
17794 test_410()
17795 {
17796         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
17797                 skip "Need client version at least 2.9.59" && return
17798
17799         # Create a file, and stat it from the kernel
17800         local testfile=$DIR/$tfile
17801         touch $testfile
17802
17803         local run_id=$RANDOM
17804         local my_ino=$(stat --format "%i" $testfile)
17805
17806         # Try to insert the module. This will always fail as the
17807         # module is designed to not be inserted.
17808         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
17809             &> /dev/null
17810
17811         # Anything but success is a test failure
17812         dmesg | grep -q \
17813             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
17814             error "no inode match"
17815 }
17816 run_test 410 "Test inode number returned from kernel thread"
17817
17818 cleanup_test411_cgroup() {
17819         trap 0
17820         rmdir "$1"
17821 }
17822
17823 test_411() {
17824         local cg_basedir=/sys/fs/cgroup/memory
17825         # LU-9966
17826         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
17827                 { skip "no setup for cgroup"; return; }
17828
17829         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
17830                 error "test file creation failed"
17831         cancel_lru_locks osc
17832
17833         # Create a very small memory cgroup to force a slab allocation error
17834         local cgdir=$cg_basedir/osc_slab_alloc
17835         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
17836         trap "cleanup_test411_cgroup $cgdir" EXIT
17837         echo 2M > $cgdir/memory.kmem.limit_in_bytes
17838         echo 1M > $cgdir/memory.limit_in_bytes
17839
17840         # Should not LBUG, just be killed by oom-killer
17841         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
17842                 error "fail to trigger a memory allocation error"
17843
17844         cleanup_test411_cgroup $cgdir
17845
17846         return 0
17847 }
17848 run_test 411 "Slab allocation error with cgroup does not LBUG"
17849
17850 test_412() {
17851         [ $MDSCOUNT -lt 2 ] &&
17852                 skip "We need at least 2 MDTs for this test" && return
17853
17854         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
17855                 skip "Need server version at least 2.10.55" && exit 0
17856         fi
17857
17858         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
17859                 error "mkdir failed"
17860         $LFS getdirstripe $DIR/$tdir
17861         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
17862         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
17863                 error "expect $((MDSCOUT - 1)) get $stripe_index"
17864         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
17865         [ $stripe_count -eq 2 ] ||
17866                 error "expect 2 get $stripe_count"
17867 }
17868 run_test 412 "mkdir on specific MDTs"
17869
17870 test_413() {
17871         [ $MDSCOUNT -lt 2 ] &&
17872                 skip "We need at least 2 MDTs for this test" && return
17873
17874         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
17875                 skip "Need server version at least 2.10.55" && exit 0
17876         fi
17877
17878         mkdir $DIR/$tdir || error "mkdir failed"
17879
17880         # find MDT that is the most full
17881         local max=$($LFS df | grep MDT |
17882                 awk 'BEGIN { a=0 }
17883                         { sub("%", "", $5)
17884                           if (0+$5 >= a)
17885                           {
17886                                 a = $5
17887                                 b = $6
17888                           }
17889                         }
17890                      END { split(b, c, ":")
17891                            sub("]", "", c[2])
17892                            print c[2]
17893                          }')
17894
17895         for i in $(seq $((MDSCOUNT - 1))); do
17896                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
17897                         error "mkdir d$i failed"
17898                 $LFS getdirstripe $DIR/$tdir/d$i
17899                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
17900                 [ $stripe_index -ne $max ] ||
17901                         error "don't expect $max"
17902         done
17903 }
17904 run_test 413 "mkdir on less full MDTs"
17905
17906 prep_801() {
17907         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
17908         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
17909                 skip "Need server version at least 2.9.55" & exit 0
17910         start_full_debug_logging
17911 }
17912
17913 post_801() {
17914         stop_full_debug_logging
17915 }
17916
17917 barrier_stat() {
17918         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17919                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17920                            awk '/The barrier for/ { print $7 }')
17921                 echo $st
17922         else
17923                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
17924                 echo \'$st\'
17925         fi
17926 }
17927
17928 barrier_expired() {
17929         local expired
17930
17931         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17932                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17933                           awk '/will be expired/ { print $7 }')
17934         else
17935                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
17936         fi
17937
17938         echo $expired
17939 }
17940
17941 test_801a() {
17942         prep_801
17943
17944         echo "Start barrier_freeze at: $(date)"
17945         #define OBD_FAIL_BARRIER_DELAY          0x2202
17946         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
17947         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
17948
17949         sleep 2
17950         local b_status=$(barrier_stat)
17951         echo "Got barrier status at: $(date)"
17952         [ "$b_status" = "'freezing_p1'" ] ||
17953                 error "(1) unexpected barrier status $b_status"
17954
17955         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
17956         wait
17957         b_status=$(barrier_stat)
17958         [ "$b_status" = "'frozen'" ] ||
17959                 error "(2) unexpected barrier status $b_status"
17960
17961         local expired=$(barrier_expired)
17962         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
17963         sleep $((expired + 3))
17964
17965         b_status=$(barrier_stat)
17966         [ "$b_status" = "'expired'" ] ||
17967                 error "(3) unexpected barrier status $b_status"
17968
17969         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
17970                 error "(4) fail to freeze barrier"
17971
17972         b_status=$(barrier_stat)
17973         [ "$b_status" = "'frozen'" ] ||
17974                 error "(5) unexpected barrier status $b_status"
17975
17976         echo "Start barrier_thaw at: $(date)"
17977         #define OBD_FAIL_BARRIER_DELAY          0x2202
17978         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
17979         do_facet mgs $LCTL barrier_thaw $FSNAME &
17980
17981         sleep 2
17982         b_status=$(barrier_stat)
17983         echo "Got barrier status at: $(date)"
17984         [ "$b_status" = "'thawing'" ] ||
17985                 error "(6) unexpected barrier status $b_status"
17986
17987         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
17988         wait
17989         b_status=$(barrier_stat)
17990         [ "$b_status" = "'thawed'" ] ||
17991                 error "(7) unexpected barrier status $b_status"
17992
17993         #define OBD_FAIL_BARRIER_FAILURE        0x2203
17994         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
17995         do_facet mgs $LCTL barrier_freeze $FSNAME
17996
17997         b_status=$(barrier_stat)
17998         [ "$b_status" = "'failed'" ] ||
17999                 error "(8) unexpected barrier status $b_status"
18000
18001         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
18002         do_facet mgs $LCTL barrier_thaw $FSNAME
18003
18004         post_801
18005 }
18006 run_test 801a "write barrier user interfaces and stat machine"
18007
18008 test_801b() {
18009         prep_801
18010
18011         mkdir $DIR/$tdir || error "(1) fail to mkdir"
18012         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
18013         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
18014         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
18015         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
18016
18017         cancel_lru_locks mdc
18018
18019         # 180 seconds should be long enough
18020         do_facet mgs $LCTL barrier_freeze $FSNAME 180
18021
18022         local b_status=$(barrier_stat)
18023         [ "$b_status" = "'frozen'" ] ||
18024                 error "(6) unexpected barrier status $b_status"
18025
18026         mkdir $DIR/$tdir/d0/d10 &
18027         mkdir_pid=$!
18028
18029         touch $DIR/$tdir/d1/f13 &
18030         touch_pid=$!
18031
18032         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
18033         ln_pid=$!
18034
18035         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
18036         mv_pid=$!
18037
18038         rm -f $DIR/$tdir/d4/f12 &
18039         rm_pid=$!
18040
18041         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
18042
18043         # To guarantee taht the 'stat' is not blocked
18044         b_status=$(barrier_stat)
18045         [ "$b_status" = "'frozen'" ] ||
18046                 error "(8) unexpected barrier status $b_status"
18047
18048         # let above commands to run at background
18049         sleep 5
18050
18051         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
18052         ps -p $touch_pid || error "(10) touch should be blocked"
18053         ps -p $ln_pid || error "(11) link should be blocked"
18054         ps -p $mv_pid || error "(12) rename should be blocked"
18055         ps -p $rm_pid || error "(13) unlink should be blocked"
18056
18057         b_status=$(barrier_stat)
18058         [ "$b_status" = "'frozen'" ] ||
18059                 error "(14) unexpected barrier status $b_status"
18060
18061         do_facet mgs $LCTL barrier_thaw $FSNAME
18062         b_status=$(barrier_stat)
18063         [ "$b_status" = "'thawed'" ] ||
18064                 error "(15) unexpected barrier status $b_status"
18065
18066         wait $mkdir_pid || error "(16) mkdir should succeed"
18067         wait $touch_pid || error "(17) touch should succeed"
18068         wait $ln_pid || error "(18) link should succeed"
18069         wait $mv_pid || error "(19) rename should succeed"
18070         wait $rm_pid || error "(20) unlink should succeed"
18071
18072         post_801
18073 }
18074 run_test 801b "modification will be blocked by write barrier"
18075
18076 test_801c() {
18077         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18078
18079         prep_801
18080
18081         stop mds2 || error "(1) Fail to stop mds2"
18082
18083         do_facet mgs $LCTL barrier_freeze $FSNAME 30
18084
18085         local b_status=$(barrier_stat)
18086         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
18087                 do_facet mgs $LCTL barrier_thaw $FSNAME
18088                 error "(2) unexpected barrier status $b_status"
18089         }
18090
18091         do_facet mgs $LCTL barrier_rescan $FSNAME ||
18092                 error "(3) Fail to rescan barrier bitmap"
18093
18094         do_facet mgs $LCTL barrier_freeze $FSNAME 10
18095
18096         b_status=$(barrier_stat)
18097         [ "$b_status" = "'frozen'" ] ||
18098                 error "(4) unexpected barrier status $b_status"
18099
18100         do_facet mgs $LCTL barrier_thaw $FSNAME
18101         b_status=$(barrier_stat)
18102         [ "$b_status" = "'thawed'" ] ||
18103                 error "(5) unexpected barrier status $b_status"
18104
18105         local devname=$(mdsdevname 2)
18106
18107         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
18108
18109         do_facet mgs $LCTL barrier_rescan $FSNAME ||
18110                 error "(7) Fail to rescan barrier bitmap"
18111
18112         post_801
18113 }
18114 run_test 801c "rescan barrier bitmap"
18115
18116 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
18117 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
18118 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
18119
18120 cleanup_802() {
18121         trap 0
18122
18123         stopall
18124         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
18125         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
18126         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
18127         setupall
18128 }
18129
18130 test_802() {
18131
18132         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
18133         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
18134                 skip "Need server version at least 2.9.55" & exit 0
18135
18136         mkdir $DIR/$tdir || error "(1) fail to mkdir"
18137
18138         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
18139                 error "(2) Fail to copy"
18140
18141         trap cleanup_802 EXIT
18142
18143         # sync by force before remount as readonly
18144         sync; sync_all_data; sleep 3; sync_all_data
18145
18146         stopall
18147
18148         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
18149         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
18150         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
18151
18152         echo "Mount the server as read only"
18153         setupall server_only || error "(3) Fail to start servers"
18154
18155         echo "Mount client without ro should fail"
18156         mount_client $MOUNT &&
18157                 error "(4) Mount client without 'ro' should fail"
18158
18159         echo "Mount client with ro should succeed"
18160         mount_client $MOUNT ro ||
18161                 error "(5) Mount client with 'ro' should succeed"
18162
18163         echo "Modify should be refused"
18164         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
18165
18166         echo "Read should be allowed"
18167         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
18168                 error "(7) Read should succeed under ro mode"
18169
18170         cleanup_802
18171 }
18172 run_test 802 "simulate readonly device"
18173
18174 test_803() {
18175         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18176         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18177                 skip "MDS needs to be newer than 2.10.54" && return
18178
18179         mkdir -p $DIR/$tdir
18180         # Create some objects on all MDTs to trigger related logs objects
18181         for idx in $(seq $MDSCOUNT); do
18182                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
18183                         $DIR/$tdir/dir${idx} ||
18184                         error "Fail to create $DIR/$tdir/dir${idx}"
18185         done
18186
18187         sync; sleep 3
18188         echo "before create:"
18189         $LFS df -i $MOUNT
18190         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18191
18192         for ((i=0; i<10; i++)); do
18193                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
18194                         error "Fail to create $DIR/$tdir/foo$i"
18195         done
18196
18197         sync; sleep 3
18198         echo "after create:"
18199         $LFS df -i $MOUNT
18200         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18201
18202         [ $after_used -ge $((before_used + 10)) ] ||
18203                 error "before ($before_used) + 10 > after ($after_used)"
18204
18205         for ((i=0; i<10; i++)); do
18206                 rm -rf $DIR/$tdir/foo$i ||
18207                         error "Fail to remove $DIR/$tdir/foo$i"
18208         done
18209
18210         sleep 3 # avoid MDT return cached statfs
18211         wait_delete_completed
18212         echo "after unlink:"
18213         $LFS df -i $MOUNT
18214         before_used=$after_used
18215         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
18216
18217         [ $after_used -le $((before_used - 8)) ] ||
18218                 error "before ($before_used) - 8 < after ($after_used)"
18219 }
18220 run_test 803 "verify agent object for remote object"
18221
18222 test_804() {
18223         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
18224         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
18225                 skip "MDS needs to be newer than 2.10.54" && return
18226
18227         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
18228                 skip "ldiskfs only test" && return 0
18229
18230         mkdir -p $DIR/$tdir
18231         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
18232                 error "Fail to create $DIR/$tdir/dir0"
18233
18234         local fid=$($LFS path2fid $DIR/$tdir/dir0)
18235         local dev=$(mdsdevname 2)
18236
18237         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18238                 grep ${fid} || error "NOT found agent entry for dir0"
18239
18240         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
18241                 error "Fail to create $DIR/$tdir/dir1"
18242
18243         touch $DIR/$tdir/dir1/foo0 ||
18244                 error "Fail to create $DIR/$tdir/dir1/foo0"
18245         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
18246         local rc=0
18247
18248         for idx in $(seq $MDSCOUNT); do
18249                 dev=$(mdsdevname $idx)
18250                 do_facet mds${idx} \
18251                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18252                         grep ${fid} && rc=$idx
18253         done
18254
18255         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
18256                 error "Fail to rename foo0 to foo1"
18257         if [ $rc -eq 0 ]; then
18258                 for idx in $(seq $MDSCOUNT); do
18259                         dev=$(mdsdevname $idx)
18260                         do_facet mds${idx} \
18261                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18262                         grep ${fid} && rc=$idx
18263                 done
18264         fi
18265
18266         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
18267                 error "Fail to rename foo1 to foo2"
18268         if [ $rc -eq 0 ]; then
18269                 for idx in $(seq $MDSCOUNT); do
18270                         dev=$(mdsdevname $idx)
18271                         do_facet mds${idx} \
18272                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
18273                         grep ${fid} && rc=$idx
18274                 done
18275         fi
18276
18277         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
18278
18279         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
18280                 error "Fail to link to $DIR/$tdir/dir1/foo2"
18281         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
18282                 error "Fail to rename foo2 to foo0"
18283         unlink $DIR/$tdir/dir1/foo0 ||
18284                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
18285         rm -rf $DIR/$tdir/dir0 ||
18286                 error "Fail to rm $DIR/$tdir/dir0"
18287
18288         for idx in $(seq $MDSCOUNT); do
18289                 dev=$(mdsdevname $idx)
18290                 rc=0
18291
18292                 stop mds${idx}
18293                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
18294                         rc=$?
18295                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
18296                         error "mount mds$idx failed"
18297                 df $MOUNT > /dev/null 2>&1
18298
18299                 # e2fsck should not return error
18300                 [ $rc -eq 0 ] ||
18301                         error "e2fsck detected error on MDT${idx}: rc=$rc"
18302         done
18303 }
18304 run_test 804 "verify agent entry for remote entry"
18305
18306 cleanup_805() {
18307         do_facet $SINGLEMDS zfs set quota=$old $fsset
18308         unlinkmany $DIR/$tdir/f- 1000000
18309         trap 0
18310 }
18311
18312 test_805() {
18313         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
18314         [ "$(facet_fstype mds1)" != "zfs" ] &&
18315                 skip "ZFS specific test" && return
18316         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
18317                 skip "netfree not implemented before 0.7" && return
18318         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
18319                 { skip "Need MDS version at least 2.10.57" && return 0; }
18320
18321         local fsset
18322         local freekb
18323         local usedkb
18324         local old
18325         local quota
18326         local pref="osd-zfs.lustre-MDT0000."
18327
18328         # limit available space on MDS dataset to meet nospace issue
18329         # quickly. then ZFS 0.7.2 can use reserved space if asked
18330         # properly (using netfree flag in osd_declare_destroy()
18331         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
18332         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
18333                 gawk '{print $3}')
18334         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
18335         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
18336         let "usedkb=usedkb-freekb"
18337         let "freekb=freekb/2"
18338         if let "freekb > 5000"; then
18339                 let "freekb=5000"
18340         fi
18341         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
18342         trap cleanup_805 EXIT
18343         mkdir $DIR/$tdir
18344         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
18345         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
18346         rm -rf $DIR/$tdir || error "not able to remove"
18347         do_facet $SINGLEMDS zfs set quota=$old $fsset
18348         trap 0
18349 }
18350 run_test 805 "ZFS can remove from full fs"
18351
18352 #
18353 # tests that do cleanup/setup should be run at the end
18354 #
18355
18356 test_900() {
18357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
18358         local ls
18359         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
18360         $LCTL set_param fail_loc=0x903
18361
18362         cancel_lru_locks MGC
18363
18364         FAIL_ON_ERROR=true cleanup
18365         FAIL_ON_ERROR=true setup
18366 }
18367 run_test 900 "umount should not race with any mgc requeue thread"
18368
18369 complete $SECONDS
18370 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
18371 check_and_cleanup_lustre
18372 if [ "$I_MOUNTED" != "yes" ]; then
18373         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
18374 fi
18375 exit_status