Whamcloud - gitweb
LU-8995 tests: set debug size correctly
[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: 13297 2108 9789 3637 9789 3561 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036 LU-8139 LU-8411
17 ALWAYS_EXCEPT="                 76      101g    407 $ALWAYS_EXCEPT"
18
19 is_sles11()                                             # LU-4341
20 {
21         if [ -r /etc/SuSE-release ]
22         then
23                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
24                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
25                         awk '{ print $3 }')
26                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
27                         return 0
28                 fi
29         fi
30         return 1
31 }
32
33 if is_sles11; then                                      # LU-4341
34         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
35 fi
36
37 SRCDIR=$(cd $(dirname $0); echo $PWD)
38 export PATH=$PATH:/sbin
39
40 TMP=${TMP:-/tmp}
41
42 CC=${CC:-cc}
43 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
44 CREATETEST=${CREATETEST:-createtest}
45 LFS=${LFS:-lfs}
46 LFIND=${LFIND:-"$LFS find"}
47 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
48 LCTL=${LCTL:-lctl}
49 OPENFILE=${OPENFILE:-openfile}
50 OPENUNLINK=${OPENUNLINK:-openunlink}
51 export MULTIOP=${MULTIOP:-multiop}
52 READS=${READS:-"reads"}
53 MUNLINK=${MUNLINK:-munlink}
54 SOCKETSERVER=${SOCKETSERVER:-socketserver}
55 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
56 MEMHOG=${MEMHOG:-memhog}
57 DIRECTIO=${DIRECTIO:-directio}
58 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
59 STRIPES_PER_OBJ=-1
60 CHECK_GRANT=${CHECK_GRANT:-"yes"}
61 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
62 export PARALLEL=${PARALLEL:-"no"}
63
64 export NAME=${NAME:-local}
65
66 SAVE_PWD=$PWD
67
68 CLEANUP=${CLEANUP:-:}
69 SETUP=${SETUP:-:}
70 TRACE=${TRACE:-""}
71 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
72 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
73 . $LUSTRE/tests/test-framework.sh
74 init_test_env $@
75 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
76 init_logging
77
78 #                                  5              12          (min)"
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24D 27m 64b 68 71 115 300o"
80
81 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
82         # bug number for skipped test: LU-4536 LU-1957
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180"
84         #                                               13    (min)"
85         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
86 fi
87
88 FAIL_ON_ERROR=false
89
90 cleanup() {
91         echo -n "cln.."
92         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
93         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
94 }
95 setup() {
96         echo -n "mnt.."
97         load_modules
98         setupall || exit 10
99         echo "done"
100 }
101
102 check_swap_layouts_support()
103 {
104         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
105                 { skip "Does not support layout lock."; return 0; }
106         return 1
107 }
108
109 check_and_setup_lustre
110 DIR=${DIR:-$MOUNT}
111 assert_DIR
112
113 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
114         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
115 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
116
117 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
118 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
119 rm -rf $DIR/[Rdfs][0-9]*
120
121 # $RUNAS_ID may get set incorrectly somewhere else
122 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
123
124 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
125
126 build_test_filter
127
128 if [ "${ONLY}" = "MOUNT" ] ; then
129         echo "Lustre is up, please go on"
130         exit
131 fi
132
133 echo "preparing for tests involving mounts"
134 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
135 touch $EXT2_DEV
136 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
137 echo # add a newline after mke2fs.
138
139 umask 077
140
141 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
142 lctl set_param debug=-1 2> /dev/null || true
143 test_0a() {
144         touch $DIR/$tfile
145         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
146         rm $DIR/$tfile
147         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
148 }
149 run_test 0a "touch; rm ====================="
150
151 test_0b() {
152         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
153         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
154 }
155 run_test 0b "chmod 0755 $DIR ============================="
156
157 test_0c() {
158         $LCTL get_param mdc.*.import | grep "state: FULL" ||
159                 error "import not FULL"
160         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
161                 error "bad target"
162 }
163 run_test 0c "check import proc ============================="
164
165 test_1() {
166         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
167         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
168         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
169         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
170         rmdir $DIR/$tdir/d2
171         rmdir $DIR/$tdir
172         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
173 }
174 run_test 1 "mkdir; remkdir; rmdir =============================="
175
176 test_2() {
177         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
178         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
179         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
180         rm -r $DIR/$tdir
181         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
182 }
183 run_test 2 "mkdir; touch; rmdir; check file ===================="
184
185 test_3() {
186         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
187         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
188         touch $DIR/$tdir/$tfile
189         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
190         rm -r $DIR/$tdir
191         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
192 }
193 run_test 3 "mkdir; touch; rmdir; check dir ====================="
194
195 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
196 test_4() {
197         local MDTIDX=1
198
199         test_mkdir $DIR/$tdir ||
200                 error "Create remote directory failed"
201
202         touch $DIR/$tdir/$tfile ||
203                 error "Create file under remote directory failed"
204
205         rmdir $DIR/$tdir &&
206                 error "Expect error removing in-use dir $DIR/$tdir"
207
208         test -d $DIR/$tdir || error "Remote directory disappeared"
209
210         rm -rf $DIR/$tdir || error "remove remote dir error"
211 }
212 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
213
214 test_5() {
215         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
216         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
217         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
218         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
219         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
220 }
221 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
222
223 test_6a() {
224         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
225         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
226         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
227                 error "$tfile does not have perm 0666 or UID $UID"
228         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
229         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
230                 error "$tfile should be 0666 and owned by UID $UID"
231 }
232 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
233
234 test_6c() {
235         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
236         touch $DIR/$tfile
237         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
238         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
239                 error "$tfile should be owned by UID $RUNAS_ID"
240         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
241         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
242                 error "$tfile should be owned by UID $RUNAS_ID"
243 }
244 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
245
246 test_6e() {
247         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
248         touch $DIR/$tfile
249         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
250         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
251                 error "$tfile should be owned by GID $UID"
252         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
253         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
254                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
255 }
256 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
257
258 test_6g() {
259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
260         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
261         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
262         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
263         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
264         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
265         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
266                 error "$tdir/d/subdir should be GID $RUNAS_GID"
267         if [[ $MDSCOUNT -gt 1 ]]; then
268                 # check remote dir sgid inherite
269                 $LFS mkdir -i 0 $DIR/$tdir.local ||
270                         error "mkdir $tdir.local failed"
271                 chmod g+s $DIR/$tdir.local ||
272                         error "chmod $tdir.local failed"
273                 chgrp $RUNAS_GID $DIR/$tdir.local ||
274                         error "chgrp $tdir.local failed"
275                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
276                         error "mkdir $tdir.remote failed"
277                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
278                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
279                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
280                         error "$tdir.remote should be mode 02755"
281         fi
282 }
283 run_test 6g "Is new dir in sgid dir inheriting group?"
284
285 test_6h() { # bug 7331
286         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
287         touch $DIR/$tfile || error "touch failed"
288         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
289         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
290                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
291         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
292                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
293 }
294 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
295
296 test_7a() {
297         test_mkdir $DIR/$tdir
298         $MCREATE $DIR/$tdir/$tfile
299         chmod 0666 $DIR/$tdir/$tfile
300         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
301                 error "$tdir/$tfile should be mode 0666"
302 }
303 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
304
305 test_7b() {
306         if [ ! -d $DIR/$tdir ]; then
307                 test_mkdir $DIR/$tdir
308         fi
309         $MCREATE $DIR/$tdir/$tfile
310         echo -n foo > $DIR/$tdir/$tfile
311         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
312         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
313 }
314 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
315
316 test_8() {
317         test_mkdir $DIR/$tdir
318         touch $DIR/$tdir/$tfile
319         chmod 0666 $DIR/$tdir/$tfile
320         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
321                 error "$tfile mode not 0666"
322 }
323 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
324
325 test_9() {
326         test_mkdir $DIR/$tdir
327         test_mkdir $DIR/$tdir/d2
328         test_mkdir $DIR/$tdir/d2/d3
329         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
330 }
331 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
332
333 test_10() {
334         test_mkdir $DIR/$tdir
335         test_mkdir $DIR/$tdir/d2
336         touch $DIR/$tdir/d2/$tfile
337         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
338                 error "$tdir/d2/$tfile not a file"
339 }
340 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
341
342 test_11() {
343         test_mkdir $DIR/$tdir
344         test_mkdir $DIR/$tdir/d2
345         chmod 0666 $DIR/$tdir/d2
346         chmod 0705 $DIR/$tdir/d2
347         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
348                 error "$tdir/d2 mode not 0705"
349 }
350 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
351
352 test_12() {
353         test_mkdir $DIR/$tdir
354         touch $DIR/$tdir/$tfile
355         chmod 0666 $DIR/$tdir/$tfile
356         chmod 0654 $DIR/$tdir/$tfile
357         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
358                 error "$tdir/d2 mode not 0654"
359 }
360 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
361
362 test_13() {
363         test_mkdir $DIR/$tdir
364         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
365         >  $DIR/$tdir/$tfile
366         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
367                 error "$tdir/$tfile size not 0 after truncate"
368 }
369 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
370
371 test_14() {
372         test_mkdir $DIR/$tdir
373         touch $DIR/$tdir/$tfile
374         rm $DIR/$tdir/$tfile
375         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
376 }
377 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
378
379 test_15() {
380         test_mkdir $DIR/$tdir
381         touch $DIR/$tdir/$tfile
382         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
383         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
384                 error "$tdir/${tfile_2} not a file after rename"
385         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
386 }
387 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
388
389 test_16() {
390         test_mkdir $DIR/$tdir
391         touch $DIR/$tdir/$tfile
392         rm -rf $DIR/$tdir/$tfile
393         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
394 }
395 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
396
397 test_17a() {
398         test_mkdir -p $DIR/$tdir
399         touch $DIR/$tdir/$tfile
400         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
401         ls -l $DIR/$tdir
402         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
403                 error "$tdir/l-exist not a symlink"
404         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
405                 error "$tdir/l-exist not referencing a file"
406         rm -f $DIR/$tdir/l-exist
407         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
408 }
409 run_test 17a "symlinks: create, remove (real) =================="
410
411 test_17b() {
412         test_mkdir -p $DIR/$tdir
413         ln -s no-such-file $DIR/$tdir/l-dangle
414         ls -l $DIR/$tdir
415         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
416                 error "$tdir/l-dangle not referencing no-such-file"
417         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
418                 error "$tdir/l-dangle not referencing non-existent file"
419         rm -f $DIR/$tdir/l-dangle
420         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
421 }
422 run_test 17b "symlinks: create, remove (dangling) =============="
423
424 test_17c() { # bug 3440 - don't save failed open RPC for replay
425         test_mkdir -p $DIR/$tdir
426         ln -s foo $DIR/$tdir/$tfile
427         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
428 }
429 run_test 17c "symlinks: open dangling (should return error) ===="
430
431 test_17d() {
432         test_mkdir -p $DIR/$tdir
433         ln -s foo $DIR/$tdir/$tfile
434         touch $DIR/$tdir/$tfile || error "creating to new symlink"
435 }
436 run_test 17d "symlinks: create dangling ========================"
437
438 test_17e() {
439         test_mkdir -p $DIR/$tdir
440         local foo=$DIR/$tdir/$tfile
441         ln -s $foo $foo || error "create symlink failed"
442         ls -l $foo || error "ls -l failed"
443         ls $foo && error "ls not failed" || true
444 }
445 run_test 17e "symlinks: create recursive symlink (should return error) ===="
446
447 test_17f() {
448         test_mkdir -p $DIR/$tdir
449         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
454         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
455         ls -l  $DIR/$tdir
456 }
457 run_test 17f "symlinks: long and very long symlink name ========================"
458
459 # str_repeat(S, N) generate a string that is string S repeated N times
460 str_repeat() {
461         local s=$1
462         local n=$2
463         local ret=''
464         while [ $((n -= 1)) -ge 0 ]; do
465                 ret=$ret$s
466         done
467         echo $ret
468 }
469
470 # Long symlinks and LU-2241
471 test_17g() {
472         test_mkdir -p $DIR/$tdir
473         local TESTS="59 60 61 4094 4095"
474
475         # Fix for inode size boundary in 2.1.4
476         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
477                 TESTS="4094 4095"
478
479         # Patch not applied to 2.2 or 2.3 branches
480         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
481         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
482                 TESTS="4094 4095"
483
484         # skip long symlink name for rhel6.5.
485         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
486         grep -q '6.5' /etc/redhat-release &>/dev/null &&
487                 TESTS="59 60 61 4062 4063"
488
489         for i in $TESTS; do
490                 local SYMNAME=$(str_repeat 'x' $i)
491                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
492                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
493         done
494 }
495 run_test 17g "symlinks: really long symlink name and inode boundaries"
496
497 test_17h() { #bug 17378
498         remote_mds_nodsh && skip "remote MDS with nodsh" && return
499         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
500         local mdt_idx
501         test_mkdir -p $DIR/$tdir
502         if [[ $MDSCOUNT -gt 1 ]]; then
503                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
504         else
505                 mdt_idx=0
506         fi
507         $SETSTRIPE -c -1 $DIR/$tdir
508 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
509         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
510         touch $DIR/$tdir/$tfile || true
511 }
512 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
513
514 test_17i() { #bug 20018
515         remote_mds_nodsh && skip "remote MDS with nodsh" && return
516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
517         test_mkdir -c1 $DIR/$tdir
518         local foo=$DIR/$tdir/$tfile
519         local mdt_idx
520         if [[ $MDSCOUNT -gt 1 ]]; then
521                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
522         else
523                 mdt_idx=0
524         fi
525         ln -s $foo $foo || error "create symlink failed"
526 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
527         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
528         ls -l $foo && error "error not detected"
529         return 0
530 }
531 run_test 17i "don't panic on short symlink"
532
533 test_17k() { #bug 22301
534         [[ -z "$(which rsync 2>/dev/null)" ]] &&
535                 skip "no rsync command" && return 0
536         rsync --help | grep -q xattr ||
537                 skip_env "$(rsync --version | head -n1) does not support xattrs"
538         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
539         test_mkdir -p $DIR/$tdir
540         test_mkdir -p $DIR/$tdir.new
541         touch $DIR/$tdir/$tfile
542         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
543         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
544                 error "rsync failed with xattrs enabled"
545 }
546 run_test 17k "symlinks: rsync with xattrs enabled ========================="
547
548 test_17l() { # LU-279
549         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
550                 skip "no getfattr command" && return 0
551         test_mkdir -p $DIR/$tdir
552         touch $DIR/$tdir/$tfile
553         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
554         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
555                 # -h to not follow symlinks. -m '' to list all the xattrs.
556                 # grep to remove first line: '# file: $path'.
557                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
558                 do
559                         lgetxattr_size_check $path $xattr ||
560                                 error "lgetxattr_size_check $path $xattr failed"
561                 done
562         done
563 }
564 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
565
566 # LU-1540
567 test_17m() {
568         local short_sym="0123456789"
569         local WDIR=$DIR/${tdir}m
570         local i
571
572         remote_mds_nodsh && skip "remote MDS with nodsh" && return
573         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
574         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
575                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
576
577         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
578                 skip "only for ldiskfs MDT" && return 0
579
580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
581
582         test_mkdir -p $WDIR
583         long_sym=$short_sym
584         # create a long symlink file
585         for ((i = 0; i < 4; ++i)); do
586                 long_sym=${long_sym}${long_sym}
587         done
588
589         echo "create 512 short and long symlink files under $WDIR"
590         for ((i = 0; i < 256; ++i)); do
591                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
592                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
593         done
594
595         echo "erase them"
596         rm -f $WDIR/*
597         sync
598         wait_delete_completed
599
600         echo "recreate the 512 symlink files with a shorter string"
601         for ((i = 0; i < 512; ++i)); do
602                 # rewrite the symlink file with a shorter string
603                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
604                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
605         done
606
607         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
608         local devname=$(mdsdevname $mds_index)
609
610         echo "stop and checking mds${mds_index}:"
611         # e2fsck should not return error
612         stop mds${mds_index}
613         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
614         rc=$?
615
616         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
617         df $MOUNT > /dev/null 2>&1
618         [ $rc -eq 0 ] ||
619                 error "e2fsck detected error for short/long symlink: rc=$rc"
620 }
621 run_test 17m "run e2fsck against MDT which contains short/long symlink"
622
623 check_fs_consistency_17n() {
624         local mdt_index
625         local rc=0
626
627         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
628         # so it only check MDT1/MDT2 instead of all of MDTs.
629         for mdt_index in 1 2; do
630                 local devname=$(mdsdevname $mdt_index)
631                 # e2fsck should not return error
632                 stop mds${mdt_index}
633                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
634                         rc=$((rc + $?))
635
636                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
637                         error "mount mds$mdt_index failed"
638                 df $MOUNT > /dev/null 2>&1
639         done
640         return $rc
641 }
642
643 test_17n() {
644         local i
645
646         remote_mds_nodsh && skip "remote MDS with nodsh" && return
647         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
648         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
649                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
650
651         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
652                 skip "only for ldiskfs MDT" && return 0
653
654         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
655
656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
657
658         test_mkdir $DIR/$tdir
659         for ((i=0; i<10; i++)); do
660                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
661                         error "create remote dir error $i"
662                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
663                         error "create files under remote dir failed $i"
664         done
665
666         check_fs_consistency_17n ||
667                 error "e2fsck report error after create files under remote dir"
668
669         for ((i = 0; i < 10; i++)); do
670                 rm -rf $DIR/$tdir/remote_dir_${i} ||
671                         error "destroy remote dir error $i"
672         done
673
674         check_fs_consistency_17n ||
675                 error "e2fsck report error after unlink files under remote dir"
676
677         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
678                 skip "lustre < 2.4.50 does not support migrate mv " && return
679
680         for ((i = 0; i < 10; i++)); do
681                 mkdir -p $DIR/$tdir/remote_dir_${i}
682                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
683                         error "create files under remote dir failed $i"
684                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
685                         error "migrate remote dir error $i"
686         done
687         check_fs_consistency_17n || error "e2fsck report error after migration"
688
689         for ((i = 0; i < 10; i++)); do
690                 rm -rf $DIR/$tdir/remote_dir_${i} ||
691                         error "destroy remote dir error $i"
692         done
693
694         check_fs_consistency_17n || error "e2fsck report error after unlink"
695 }
696 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
697
698 test_17o() {
699         remote_mds_nodsh && skip "remote MDS with nodsh" && return
700         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
701                 skip "Need MDS version at least 2.3.64" && return
702
703         local WDIR=$DIR/${tdir}o
704         local mdt_index
705         local rc=0
706
707         test_mkdir -p $WDIR
708         mdt_index=$($LFS getstripe -M $WDIR)
709         mdt_index=$((mdt_index+1))
710
711         touch $WDIR/$tfile
712
713         #fail mds will wait the failover finish then set
714         #following fail_loc to avoid interfer the recovery process.
715         fail mds${mdt_index}
716
717         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
718         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
719         ls -l $WDIR/$tfile && rc=1
720         do_facet mds${mdt_index} lctl set_param fail_loc=0
721         [[ $rc -ne 0 ]] && error "stat file should fail"
722         true
723 }
724 run_test 17o "stat file with incompat LMA feature"
725
726 test_18() {
727         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
728         ls $DIR || error "Failed to ls $DIR: $?"
729 }
730 run_test 18 "touch .../f ; ls ... =============================="
731
732 test_19a() {
733         touch $DIR/$tfile
734         ls -l $DIR
735         rm $DIR/$tfile
736         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
737 }
738 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
739
740 test_19b() {
741         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
742 }
743 run_test 19b "ls -l .../f19 (should return error) =============="
744
745 test_19c() {
746         [ $RUNAS_ID -eq $UID ] &&
747                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
748         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
749 }
750 run_test 19c "$RUNAS touch .../f19 (should return error) =="
751
752 test_19d() {
753         cat $DIR/f19 && error || true
754 }
755 run_test 19d "cat .../f19 (should return error) =============="
756
757 test_20() {
758         touch $DIR/$tfile
759         rm $DIR/$tfile
760         log "1 done"
761         touch $DIR/$tfile
762         rm $DIR/$tfile
763         log "2 done"
764         touch $DIR/$tfile
765         rm $DIR/$tfile
766         log "3 done"
767         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
768 }
769 run_test 20 "touch .../f ; ls -l ... ==========================="
770
771 test_21() {
772         test_mkdir -p $DIR/$tdir
773         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
774         ln -s dangle $DIR/$tdir/link
775         echo foo >> $DIR/$tdir/link
776         cat $DIR/$tdir/dangle
777         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
778         $CHECKSTAT -f -t file $DIR/$tdir/link ||
779                 error "$tdir/link not linked to a file"
780 }
781 run_test 21 "write to dangling link ============================"
782
783 test_22() {
784         WDIR=$DIR/$tdir
785         test_mkdir -p $DIR/$tdir
786         chown $RUNAS_ID:$RUNAS_GID $WDIR
787         (cd $WDIR || error "cd $WDIR failed";
788         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
789         $RUNAS tar xf -)
790         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
791         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
792         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
793 }
794 run_test 22 "unpack tar archive as non-root user ==============="
795
796 # was test_23
797 test_23a() {
798         test_mkdir -p $DIR/$tdir
799         local file=$DIR/$tdir/$tfile
800
801         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
802         openfile -f O_CREAT:O_EXCL $file &&
803                 error "$file recreate succeeded" || true
804 }
805 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
806
807 test_23b() { # bug 18988
808         test_mkdir -p $DIR/$tdir
809         local file=$DIR/$tdir/$tfile
810
811         rm -f $file
812         echo foo > $file || error "write filed"
813         echo bar >> $file || error "append filed"
814         $CHECKSTAT -s 8 $file || error "wrong size"
815         rm $file
816 }
817 run_test 23b "O_APPEND check =========================="
818
819 # rename sanity
820 test_24a() {
821         echo '-- same directory rename'
822         test_mkdir $DIR/$tdir
823         touch $DIR/$tdir/$tfile.1
824         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
825         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
826 }
827 run_test 24a "rename file to non-existent target"
828
829 test_24b() {
830         test_mkdir $DIR/$tdir
831         touch $DIR/$tdir/$tfile.{1,2}
832         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
833         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
834         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
835 }
836 run_test 24b "rename file to existing target"
837
838 test_24c() {
839         test_mkdir $DIR/$tdir
840         test_mkdir $DIR/$tdir/d$testnum.1
841         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
842         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
843         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
844 }
845 run_test 24c "rename directory to non-existent target"
846
847 test_24d() {
848         test_mkdir -c1 $DIR/$tdir
849         test_mkdir -c1 $DIR/$tdir/d$testnum.1
850         test_mkdir -c1 $DIR/$tdir/d$testnum.2
851         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
852         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
853         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
854 }
855 run_test 24d "rename directory to existing target"
856
857 test_24e() {
858         echo '-- cross directory renames --'
859         test_mkdir $DIR/R5a
860         test_mkdir $DIR/R5b
861         touch $DIR/R5a/f
862         mv $DIR/R5a/f $DIR/R5b/g
863         $CHECKSTAT -a $DIR/R5a/f || error
864         $CHECKSTAT -t file $DIR/R5b/g || error
865 }
866 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
867
868 test_24f() {
869         test_mkdir $DIR/R6a
870         test_mkdir $DIR/R6b
871         touch $DIR/R6a/f $DIR/R6b/g
872         mv $DIR/R6a/f $DIR/R6b/g
873         $CHECKSTAT -a $DIR/R6a/f || error
874         $CHECKSTAT -t file $DIR/R6b/g || error
875 }
876 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
877
878 test_24g() {
879         test_mkdir $DIR/R7a
880         test_mkdir $DIR/R7b
881         test_mkdir $DIR/R7a/d
882         mv $DIR/R7a/d $DIR/R7b/e
883         $CHECKSTAT -a $DIR/R7a/d || error
884         $CHECKSTAT -t dir $DIR/R7b/e || error
885 }
886 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
887
888 test_24h() {
889         test_mkdir -c1 $DIR/R8a
890         test_mkdir -c1 $DIR/R8b
891         test_mkdir -c1 $DIR/R8a/d
892         test_mkdir -c1 $DIR/R8b/e
893         mrename $DIR/R8a/d $DIR/R8b/e
894         $CHECKSTAT -a $DIR/R8a/d || error
895         $CHECKSTAT -t dir $DIR/R8b/e || error
896 }
897 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
898
899 test_24i() {
900         echo "-- rename error cases"
901         test_mkdir $DIR/R9
902         test_mkdir $DIR/R9/a
903         touch $DIR/R9/f
904         mrename $DIR/R9/f $DIR/R9/a
905         $CHECKSTAT -t file $DIR/R9/f || error
906         $CHECKSTAT -t dir  $DIR/R9/a || error
907         $CHECKSTAT -a $DIR/R9/a/f || error
908 }
909 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
910
911 test_24j() {
912         test_mkdir $DIR/R10
913         mrename $DIR/R10/f $DIR/R10/g
914         $CHECKSTAT -t dir $DIR/R10 || error
915         $CHECKSTAT -a $DIR/R10/f || error
916         $CHECKSTAT -a $DIR/R10/g || error
917 }
918 run_test 24j "source does not exist ============================"
919
920 test_24k() {
921         test_mkdir $DIR/R11a
922         test_mkdir $DIR/R11a/d
923         touch $DIR/R11a/f
924         mv $DIR/R11a/f $DIR/R11a/d
925         $CHECKSTAT -a $DIR/R11a/f || error
926         $CHECKSTAT -t file $DIR/R11a/d/f || error
927 }
928 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
929
930 # bug 2429 - rename foo foo foo creates invalid file
931 test_24l() {
932         f="$DIR/f24l"
933         $MULTIOP $f OcNs || error
934 }
935 run_test 24l "Renaming a file to itself ========================"
936
937 test_24m() {
938         f="$DIR/f24m"
939         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
940         # on ext3 this does not remove either the source or target files
941         # though the "expected" operation would be to remove the source
942         $CHECKSTAT -t file ${f} || error "${f} missing"
943         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
944 }
945 run_test 24m "Renaming a file to a hard link to itself ========="
946
947 test_24n() {
948     f="$DIR/f24n"
949     # this stats the old file after it was renamed, so it should fail
950     touch ${f}
951     $CHECKSTAT ${f}
952     mv ${f} ${f}.rename
953     $CHECKSTAT ${f}.rename
954     $CHECKSTAT -a ${f}
955 }
956 run_test 24n "Statting the old file after renaming (Posix rename 2)"
957
958 test_24o() {
959         test_mkdir -p $DIR/d24o
960         rename_many -s random -v -n 10 $DIR/d24o
961 }
962 run_test 24o "rename of files during htree split ==============="
963
964 test_24p() {
965         test_mkdir $DIR/R12a
966         test_mkdir $DIR/R12b
967         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
968         mrename $DIR/R12a $DIR/R12b
969         $CHECKSTAT -a $DIR/R12a || error
970         $CHECKSTAT -t dir $DIR/R12b || error
971         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
972         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
973 }
974 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
975
976 cleanup_multiop_pause() {
977         trap 0
978         kill -USR1 $MULTIPID
979 }
980
981 test_24q() {
982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
983         test_mkdir $DIR/R13a
984         test_mkdir $DIR/R13b
985         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
986         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
987         MULTIPID=$!
988
989         trap cleanup_multiop_pause EXIT
990         mrename $DIR/R13a $DIR/R13b
991         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
992         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
993         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
994         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
995         cleanup_multiop_pause
996         wait $MULTIPID || error "multiop close failed"
997 }
998 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
999
1000 test_24r() { #bug 3789
1001         test_mkdir $DIR/R14a
1002         test_mkdir $DIR/R14a/b
1003         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1004         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1005         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1006 }
1007 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1008
1009 test_24s() {
1010         test_mkdir $DIR/R15a
1011         test_mkdir $DIR/R15a/b
1012         test_mkdir $DIR/R15a/b/c
1013         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1014         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1015         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1016 }
1017 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1018 test_24t() {
1019         test_mkdir $DIR/R16a
1020         test_mkdir $DIR/R16a/b
1021         test_mkdir $DIR/R16a/b/c
1022         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1023         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1024         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1025 }
1026 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1027
1028 test_24u() { # bug12192
1029         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1030         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1031 }
1032 run_test 24u "create stripe file"
1033
1034 page_size() {
1035         local size
1036         size=$(getconf PAGE_SIZE 2>/dev/null)
1037         echo -n ${size:-4096}
1038 }
1039
1040 simple_cleanup_common() {
1041         trap 0
1042         rm -rf $DIR/$tdir
1043         wait_delete_completed
1044 }
1045
1046 max_pages_per_rpc() {
1047         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1048 }
1049
1050 test_24v() {
1051         local NRFILES=100000
1052         local FREE_INODES=$(mdt_free_inodes 0)
1053         [[ $FREE_INODES -lt $NRFILES ]] &&
1054                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1055                 return
1056
1057         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1058         trap simple_cleanup_common EXIT
1059
1060         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1061         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1062
1063         test_mkdir -p $DIR/$tdir
1064         createmany -m $DIR/$tdir/$tfile $NRFILES
1065
1066         cancel_lru_locks mdc
1067         lctl set_param mdc.*.stats clear
1068
1069         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1070
1071         # LU-5 large readdir
1072         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1073         #               8 bytes for name(filename is mostly 5 in this test) +
1074         #               8 bytes for luda_type
1075         # take into account of overhead in lu_dirpage header and end mark in
1076         # each page, plus one in RPC_NUM calculation.
1077         DIRENT_SIZE=48
1078         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1079         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1080         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1081                                 awk '/^mds_readpage/ {print $2}')
1082         [[ $mds_readpage -gt $RPC_NUM ]] &&
1083                 error "large readdir doesn't take effect"
1084
1085         simple_cleanup_common
1086 }
1087 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1088
1089 test_24w() { # bug21506
1090         SZ1=234852
1091         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1092         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1093         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1094         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1095         [[ "$SZ1" -eq "$SZ2" ]] ||
1096                 error "Error reading at the end of the file $tfile"
1097 }
1098 run_test 24w "Reading a file larger than 4Gb"
1099
1100 test_24x() {
1101         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1102
1103         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1104                 skip "Need MDS version at least 2.7.56" && return
1105
1106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1107         local MDTIDX=1
1108         local remote_dir=$DIR/$tdir/remote_dir
1109
1110         test_mkdir -p $DIR/$tdir
1111         $LFS mkdir -i $MDTIDX $remote_dir ||
1112                 error "create remote directory failed"
1113
1114         test_mkdir -p $DIR/$tdir/src_dir
1115         touch $DIR/$tdir/src_file
1116         test_mkdir -p $remote_dir/tgt_dir
1117         touch $remote_dir/tgt_file
1118
1119         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1120                 error "rename dir cross MDT failed!"
1121
1122         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1123                 error "rename file cross MDT failed!"
1124
1125         touch $DIR/$tdir/ln_file
1126         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1127                 error "ln file cross MDT failed"
1128
1129         rm -rf $DIR/$tdir || error "Can not delete directories"
1130 }
1131 run_test 24x "cross MDT rename/link"
1132
1133 test_24y() {
1134         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1136         local MDTIDX=1
1137         local remote_dir=$DIR/$tdir/remote_dir
1138
1139         test_mkdir -p $DIR/$tdir
1140         $LFS mkdir -i $MDTIDX $remote_dir ||
1141                    error "create remote directory failed"
1142
1143         test_mkdir -p $remote_dir/src_dir
1144         touch $remote_dir/src_file
1145         test_mkdir -p $remote_dir/tgt_dir
1146         touch $remote_dir/tgt_file
1147
1148         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1149                 error "rename subdir in the same remote dir failed!"
1150
1151         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1152                 error "rename files in the same remote dir failed!"
1153
1154         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1155                 error "link files in the same remote dir failed!"
1156
1157         rm -rf $DIR/$tdir || error "Can not delete directories"
1158 }
1159 run_test 24y "rename/link on the same dir should succeed"
1160
1161 test_24A() { # LU-3182
1162         local NFILES=5000
1163
1164         rm -rf $DIR/$tdir
1165         test_mkdir -p $DIR/$tdir
1166         createmany -m $DIR/$tdir/$tfile $NFILES
1167         local t=$(ls $DIR/$tdir | wc -l)
1168         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1169         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1170         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1171                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1172         fi
1173
1174         rm -rf $DIR/$tdir || error "Can not delete directories"
1175 }
1176 run_test 24A "readdir() returns correct number of entries."
1177
1178 test_24B() { # LU-4805
1179         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1180         local count
1181
1182         test_mkdir $DIR/$tdir
1183         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1184                 error "create striped dir failed"
1185
1186         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1187         [ $count -eq 2 ] || error "Expected 2, got $count"
1188
1189         touch $DIR/$tdir/striped_dir/a
1190
1191         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1192         [ $count -eq 3 ] || error "Expected 3, got $count"
1193
1194         touch $DIR/$tdir/striped_dir/.f
1195
1196         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1197         [ $count -eq 4 ] || error "Expected 4, got $count"
1198
1199         rm -rf $DIR/$tdir || error "Can not delete directories"
1200 }
1201 run_test 24B "readdir for striped dir return correct number of entries"
1202
1203 test_24C() {
1204         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1205
1206         mkdir $DIR/$tdir
1207         mkdir $DIR/$tdir/d0
1208         mkdir $DIR/$tdir/d1
1209
1210         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1211                 error "create striped dir failed"
1212
1213         cd $DIR/$tdir/d0/striped_dir
1214
1215         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1216         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1217         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1218
1219         [ "$d0_ino" = "$parent_ino" ] ||
1220                 error ".. wrong, expect $d0_ino, get $parent_ino"
1221
1222         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1223                 error "mv striped dir failed"
1224
1225         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1226
1227         [ "$d1_ino" = "$parent_ino" ] ||
1228                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1229 }
1230 run_test 24C "check .. in striped dir"
1231
1232 test_24D() { # LU-6101
1233         local NFILES=50000
1234
1235         rm -rf $DIR/$tdir
1236         mkdir -p $DIR/$tdir
1237         createmany -m $DIR/$tdir/$tfile $NFILES
1238         local t=$(ls $DIR/$tdir | wc -l)
1239         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1240         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1241         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1242                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1243         fi
1244
1245         rm -rf $DIR/$tdir || error "Can not delete directories"
1246 }
1247 run_test 24D "readdir() returns correct number of entries after cursor reload"
1248
1249 test_24E() {
1250         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1252
1253         mkdir -p $DIR/$tdir
1254         mkdir $DIR/$tdir/src_dir
1255         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1256                 error "create remote source failed"
1257
1258         touch $DIR/$tdir/src_dir/src_child/a
1259
1260         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1261                 error "create remote target dir failed"
1262
1263         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1264                 error "create remote target child failed"
1265
1266         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1267                 error "rename dir cross MDT failed!"
1268
1269         find $DIR/$tdir
1270
1271         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1272                 error "src_child still exists after rename"
1273
1274         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1275                 error "missing file(a) after rename"
1276
1277         rm -rf $DIR/$tdir || error "Can not delete directories"
1278 }
1279 run_test 24E "cross MDT rename/link"
1280
1281 test_25a() {
1282         echo '== symlink sanity ============================================='
1283
1284         test_mkdir $DIR/d25
1285         ln -s d25 $DIR/s25
1286         touch $DIR/s25/foo || error
1287 }
1288 run_test 25a "create file in symlinked directory ==============="
1289
1290 test_25b() {
1291         [ ! -d $DIR/d25 ] && test_25a
1292         $CHECKSTAT -t file $DIR/s25/foo || error
1293 }
1294 run_test 25b "lookup file in symlinked directory ==============="
1295
1296 test_26a() {
1297         test_mkdir $DIR/d26
1298         test_mkdir $DIR/d26/d26-2
1299         ln -s d26/d26-2 $DIR/s26
1300         touch $DIR/s26/foo || error
1301 }
1302 run_test 26a "multiple component symlink ======================="
1303
1304 test_26b() {
1305         test_mkdir -p $DIR/d26b/d26-2
1306         ln -s d26b/d26-2/foo $DIR/s26-2
1307         touch $DIR/s26-2 || error
1308 }
1309 run_test 26b "multiple component symlink at end of lookup ======"
1310
1311 test_26c() {
1312         test_mkdir $DIR/d26.2
1313         touch $DIR/d26.2/foo
1314         ln -s d26.2 $DIR/s26.2-1
1315         ln -s s26.2-1 $DIR/s26.2-2
1316         ln -s s26.2-2 $DIR/s26.2-3
1317         chmod 0666 $DIR/s26.2-3/foo
1318 }
1319 run_test 26c "chain of symlinks ================================"
1320
1321 # recursive symlinks (bug 439)
1322 test_26d() {
1323         ln -s d26-3/foo $DIR/d26-3
1324 }
1325 run_test 26d "create multiple component recursive symlink ======"
1326
1327 test_26e() {
1328         [ ! -h $DIR/d26-3 ] && test_26d
1329         rm $DIR/d26-3
1330 }
1331 run_test 26e "unlink multiple component recursive symlink ======"
1332
1333 # recursive symlinks (bug 7022)
1334 test_26f() {
1335         test_mkdir -p $DIR/$tdir
1336         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1337         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1338         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1339         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1340         cd $tfile                || error "cd $tfile failed"
1341         ln -s .. dotdot          || error "ln dotdot failed"
1342         ln -s dotdot/lndir lndir || error "ln lndir failed"
1343         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1344         output=`ls $tfile/$tfile/lndir/bar1`
1345         [ "$output" = bar1 ] && error "unexpected output"
1346         rm -r $tfile             || error "rm $tfile failed"
1347         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1348 }
1349 run_test 26f "rm -r of a directory which has recursive symlink ="
1350
1351 test_27a() {
1352         echo '== stripe sanity =============================================='
1353         test_mkdir -p $DIR/d27 || error "mkdir failed"
1354         $GETSTRIPE $DIR/d27
1355         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1356         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1357         log "== test_27a: write to one stripe file ========================="
1358         cp /etc/hosts $DIR/d27/f0 || error
1359 }
1360 run_test 27a "one stripe file =================================="
1361
1362 test_27b() {
1363         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1364         test_mkdir -p $DIR/d27
1365         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1366         $GETSTRIPE -c $DIR/d27/f01
1367         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1368                 error "two-stripe file doesn't have two stripes"
1369
1370         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1371 }
1372 run_test 27b "create and write to two stripe file"
1373
1374 test_27d() {
1375         test_mkdir -p $DIR/d27
1376         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1377         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1378         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1379 }
1380 run_test 27d "create file with default settings ================"
1381
1382 test_27e() {
1383         # LU-5839 adds check for existed layout before setting it
1384         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1385                 skip "Need MDS version at least 2.7.56" && return
1386         test_mkdir -p $DIR/d27
1387         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1388         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1389         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1390 }
1391 run_test 27e "setstripe existing file (should return error) ======"
1392
1393 test_27f() {
1394         test_mkdir $DIR/$tdir
1395         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1396                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1397         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1398                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1399         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1400         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1401 }
1402 run_test 27f "setstripe with bad stripe size (should return error)"
1403
1404 test_27g() {
1405         test_mkdir -p $DIR/d27
1406         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1407         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1408                 error "$DIR/d27/fnone has object"
1409 }
1410 run_test 27g "$GETSTRIPE with no objects"
1411
1412 test_27i() {
1413         test_mkdir $DIR/$tdir
1414         touch $DIR/$tdir/$tfile || error "touch failed"
1415         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1416                 error "missing objects"
1417 }
1418 run_test 27i "$GETSTRIPE with some objects"
1419
1420 test_27j() {
1421         test_mkdir -p $DIR/d27
1422         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1423 }
1424 run_test 27j "setstripe with bad stripe offset (should return error)"
1425
1426 test_27k() { # bug 2844
1427         test_mkdir -p $DIR/d27
1428         FILE=$DIR/d27/f27k
1429         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1430         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1431         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1432         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1433         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1434         dd if=/dev/zero of=$FILE bs=4k count=1
1435         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1436         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1437 }
1438 run_test 27k "limit i_blksize for broken user apps ============="
1439
1440 test_27l() {
1441         test_mkdir -p $DIR/d27
1442         mcreate $DIR/f27l || error "creating file"
1443         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1444                 error "setstripe should have failed" || true
1445 }
1446 run_test 27l "check setstripe permissions (should return error)"
1447
1448 test_27m() {
1449         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1450                 return
1451
1452         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1453                    head -n1)
1454         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1455                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1456                 return
1457         fi
1458         trap simple_cleanup_common EXIT
1459         test_mkdir -p $DIR/$tdir
1460         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1461         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1462                 error "dd should fill OST0"
1463         i=2
1464         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1465                 i=$((i + 1))
1466                 [ $i -gt 256 ] && break
1467         done
1468         i=$((i + 1))
1469         touch $DIR/$tdir/f27m_$i
1470         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1471                 error "OST0 was full but new created file still use it"
1472         i=$((i + 1))
1473         touch $DIR/$tdir/f27m_$i
1474         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1475                 error "OST0 was full but new created file still use it"
1476         simple_cleanup_common
1477 }
1478 run_test 27m "create file while OST0 was full =================="
1479
1480 sleep_maxage() {
1481         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1482         sleep $DELAY
1483 }
1484
1485 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1486 # if the OST isn't full anymore.
1487 reset_enospc() {
1488         local OSTIDX=${1:-""}
1489
1490         local list=$(comma_list $(osts_nodes))
1491         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1492
1493         do_nodes $list lctl set_param fail_loc=0
1494         sync    # initiate all OST_DESTROYs from MDS to OST
1495         sleep_maxage
1496 }
1497
1498 exhaust_precreations() {
1499         local OSTIDX=$1
1500         local FAILLOC=$2
1501         local FAILIDX=${3:-$OSTIDX}
1502         local ofacet=ost$((OSTIDX + 1))
1503
1504         test_mkdir -p -c1 $DIR/$tdir
1505         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1506         local mfacet=mds$((mdtidx + 1))
1507         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1508
1509         local OST=$(ostname_from_index $OSTIDX)
1510
1511         # on the mdt's osc
1512         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1513         local last_id=$(do_facet $mfacet lctl get_param -n \
1514                         osc.$mdtosc_proc1.prealloc_last_id)
1515         local next_id=$(do_facet $mfacet lctl get_param -n \
1516                         osc.$mdtosc_proc1.prealloc_next_id)
1517
1518         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1519         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1520
1521         test_mkdir -p $DIR/$tdir/${OST}
1522         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1523 #define OBD_FAIL_OST_ENOSPC              0x215
1524         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1525         echo "Creating to objid $last_id on ost $OST..."
1526         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1527         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1528         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1529         sleep_maxage
1530 }
1531
1532 exhaust_all_precreations() {
1533         local i
1534         for (( i=0; i < OSTCOUNT; i++ )) ; do
1535                 exhaust_precreations $i $1 -1
1536         done
1537 }
1538
1539 test_27n() {
1540         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1541         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1542         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1543         remote_ost_nodsh && skip "remote OST with nodsh" && return
1544
1545         reset_enospc
1546         rm -f $DIR/$tdir/$tfile
1547         exhaust_precreations 0 0x80000215
1548         $SETSTRIPE -c -1 $DIR/$tdir
1549         touch $DIR/$tdir/$tfile || error
1550         $GETSTRIPE $DIR/$tdir/$tfile
1551         reset_enospc
1552 }
1553 run_test 27n "create file with some full OSTs =================="
1554
1555 test_27o() {
1556         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1558         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1559         remote_ost_nodsh && skip "remote OST with nodsh" && return
1560
1561         reset_enospc
1562         rm -f $DIR/$tdir/$tfile
1563         exhaust_all_precreations 0x215
1564
1565         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1566
1567         reset_enospc
1568         rm -rf $DIR/$tdir/*
1569 }
1570 run_test 27o "create file with all full OSTs (should error) ===="
1571
1572 test_27p() {
1573         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1575         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1576         remote_ost_nodsh && skip "remote OST with nodsh" && return
1577
1578         reset_enospc
1579         rm -f $DIR/$tdir/$tfile
1580         test_mkdir -p $DIR/$tdir
1581
1582         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1583         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1584         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1585
1586         exhaust_precreations 0 0x80000215
1587         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1588         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1589         $GETSTRIPE $DIR/$tdir/$tfile
1590
1591         reset_enospc
1592 }
1593 run_test 27p "append to a truncated file with some full OSTs ==="
1594
1595 test_27q() {
1596         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1598         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1599         remote_ost_nodsh && skip "remote OST with nodsh" && return
1600
1601         reset_enospc
1602         rm -f $DIR/$tdir/$tfile
1603
1604         test_mkdir -p $DIR/$tdir
1605         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1606         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1607         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1608
1609         exhaust_all_precreations 0x215
1610
1611         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1612         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1613
1614         reset_enospc
1615 }
1616 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1617
1618 test_27r() {
1619         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1621         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1622         remote_ost_nodsh && skip "remote OST with nodsh" && return
1623
1624         reset_enospc
1625         rm -f $DIR/$tdir/$tfile
1626         exhaust_precreations 0 0x80000215
1627
1628         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1629
1630         reset_enospc
1631 }
1632 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1633
1634 test_27s() { # bug 10725
1635         test_mkdir -p $DIR/$tdir
1636         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1637         local stripe_count=0
1638         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1639         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1640                 error "stripe width >= 2^32 succeeded" || true
1641
1642 }
1643 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1644
1645 test_27t() { # bug 10864
1646         WDIR=$(pwd)
1647         WLFS=$(which lfs)
1648         cd $DIR
1649         touch $tfile
1650         $WLFS getstripe $tfile
1651         cd $WDIR
1652 }
1653 run_test 27t "check that utils parse path correctly"
1654
1655 test_27u() { # bug 4900
1656         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1657         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1658         local index
1659         local list=$(comma_list $(mdts_nodes))
1660
1661 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1662         do_nodes $list $LCTL set_param fail_loc=0x139
1663         test_mkdir -p $DIR/$tdir
1664         rm -rf $DIR/$tdir/*
1665         createmany -o $DIR/$tdir/t- 1000
1666         do_nodes $list $LCTL set_param fail_loc=0
1667
1668         TLOG=$TMP/$tfile.getstripe
1669         $GETSTRIPE $DIR/$tdir > $TLOG
1670         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1671         unlinkmany $DIR/$tdir/t- 1000
1672         [[ $OBJS -gt 0 ]] &&
1673                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1674 }
1675 run_test 27u "skip object creation on OSC w/o objects =========="
1676
1677 test_27v() { # bug 4900
1678         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1679         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1680         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1681         remote_ost_nodsh && skip "remote OST with nodsh" && return
1682
1683         exhaust_all_precreations 0x215
1684         reset_enospc
1685
1686         test_mkdir -p $DIR/$tdir
1687         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1688
1689         touch $DIR/$tdir/$tfile
1690         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1691         # all except ost1
1692         for (( i=1; i < OSTCOUNT; i++ )); do
1693                 do_facet ost$i lctl set_param fail_loc=0x705
1694         done
1695         local START=`date +%s`
1696         createmany -o $DIR/$tdir/$tfile 32
1697
1698         local FINISH=`date +%s`
1699         local TIMEOUT=`lctl get_param -n timeout`
1700         local PROCESS=$((FINISH - START))
1701         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1702                error "$FINISH - $START >= $TIMEOUT / 2"
1703         sleep $((TIMEOUT / 2 - PROCESS))
1704         reset_enospc
1705 }
1706 run_test 27v "skip object creation on slow OST ================="
1707
1708 test_27w() { # bug 10997
1709         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1710         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1711         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1712                 error "stripe size $size != 65536" || true
1713         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1714                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1715 }
1716 run_test 27w "check $SETSTRIPE -S option"
1717
1718 test_27wa() {
1719         [[ $OSTCOUNT -lt 2 ]] &&
1720                 skip_env "skipping multiple stripe count/offset test" && return
1721
1722         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1723         for i in $(seq 1 $OSTCOUNT); do
1724                 offset=$((i - 1))
1725                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1726                         error "setstripe -c $i -i $offset failed"
1727                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1728                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1729                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1730                 [ $index -ne $offset ] &&
1731                         error "stripe offset $index != $offset" || true
1732         done
1733 }
1734 run_test 27wa "check $SETSTRIPE -c -i options"
1735
1736 test_27x() {
1737         remote_ost_nodsh && skip "remote OST with nodsh" && return
1738         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1740         OFFSET=$(($OSTCOUNT - 1))
1741         OSTIDX=0
1742         local OST=$(ostname_from_index $OSTIDX)
1743
1744         test_mkdir -p $DIR/$tdir
1745         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1746         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1747         sleep_maxage
1748         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1749         for i in `seq 0 $OFFSET`; do
1750                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1751                 error "OST0 was degraded but new created file still use it"
1752         done
1753         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1754 }
1755 run_test 27x "create files while OST0 is degraded"
1756
1757 test_27y() {
1758         [[ $OSTCOUNT -lt 2 ]] &&
1759                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1760         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1761         remote_ost_nodsh && skip "remote OST with nodsh" && return
1762         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1763
1764         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1765         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1766             osc.$mdtosc.prealloc_last_id)
1767         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1768             osc.$mdtosc.prealloc_next_id)
1769         local fcount=$((last_id - next_id))
1770         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1771         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1772
1773         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1774                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1775         local OST_DEACTIVE_IDX=-1
1776         local OSC
1777         local OSTIDX
1778         local OST
1779
1780         for OSC in $MDS_OSCS; do
1781                 OST=$(osc_to_ost $OSC)
1782                 OSTIDX=$(index_from_ostuuid $OST)
1783                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1784                         OST_DEACTIVE_IDX=$OSTIDX
1785                 fi
1786                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1787                         echo $OSC "is Deactivated:"
1788                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1789                 fi
1790         done
1791
1792         OSTIDX=$(index_from_ostuuid $OST)
1793         test_mkdir -p $DIR/$tdir
1794         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1795
1796         for OSC in $MDS_OSCS; do
1797                 OST=$(osc_to_ost $OSC)
1798                 OSTIDX=$(index_from_ostuuid $OST)
1799                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1800                         echo $OST "is degraded:"
1801                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1802                                                 obdfilter.$OST.degraded=1
1803                 fi
1804         done
1805
1806         sleep_maxage
1807         createmany -o $DIR/$tdir/$tfile $fcount
1808
1809         for OSC in $MDS_OSCS; do
1810                 OST=$(osc_to_ost $OSC)
1811                 OSTIDX=$(index_from_ostuuid $OST)
1812                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1813                         echo $OST "is recovered from degraded:"
1814                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1815                                                 obdfilter.$OST.degraded=0
1816                 else
1817                         do_facet $SINGLEMDS lctl --device %$OSC activate
1818                 fi
1819         done
1820
1821         # all osp devices get activated, hence -1 stripe count restored
1822         local stripecnt=0
1823
1824         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1825         # devices get activated.
1826         sleep_maxage
1827         $SETSTRIPE -c -1 $DIR/$tfile
1828         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1829         rm -f $DIR/$tfile
1830         [ $stripecnt -ne $OSTCOUNT ] &&
1831                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1832         return 0
1833 }
1834 run_test 27y "create files while OST0 is degraded and the rest inactive"
1835
1836 check_seq_oid()
1837 {
1838         log "check file $1"
1839
1840         lmm_count=$($GETSTRIPE -c $1)
1841         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1842         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1843
1844         local old_ifs="$IFS"
1845         IFS=$'[:]'
1846         fid=($($LFS path2fid $1))
1847         IFS="$old_ifs"
1848
1849         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1850         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1851
1852         # compare lmm_seq and lu_fid->f_seq
1853         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1854         # compare lmm_object_id and lu_fid->oid
1855         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1856
1857         # check the trusted.fid attribute of the OST objects of the file
1858         local have_obdidx=false
1859         local stripe_nr=0
1860         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1861                 # skip lines up to and including "obdidx"
1862                 [ -z "$obdidx" ] && break
1863                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1864                 $have_obdidx || continue
1865
1866                 local ost=$((obdidx + 1))
1867                 local dev=$(ostdevname $ost)
1868                 local oid_hex
1869
1870                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1871
1872                 seq=$(echo $seq | sed -e "s/^0x//g")
1873                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1874                         oid_hex=$(echo $oid)
1875                 else
1876                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1877                 fi
1878                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1879
1880                 local ff
1881                 #
1882                 # Don't unmount/remount the OSTs if we don't need to do that.
1883                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1884                 # update too, until that use mount/ll_decode_filter_fid/mount.
1885                 # Re-enable when debugfs will understand new filter_fid.
1886                 #
1887                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1888                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1889                                 $dev 2>/dev/null" | grep "parent=")
1890                 else
1891                         stop ost$ost
1892                         mount_fstype ost$ost
1893                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1894                                 $(facet_mntpt ost$ost)/$obj_file)
1895                         unmount_fstype ost$ost
1896                         start ost$ost $dev $OST_MOUNT_OPTS
1897                         clients_up
1898                 fi
1899
1900                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1901
1902                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1903
1904                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1905                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1906                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1907                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1908                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1909                 local ff_pstripe
1910                 if echo $ff_parent | grep -q 'stripe='; then
1911                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1912                 else
1913                         #
1914                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1915                         # into f_ver in this case.  See the comment on
1916                         # ff_parent.
1917                         #
1918                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1919                                 sed -e 's/\]//')
1920                 fi
1921
1922                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1923                 [ $ff_pseq = $lmm_seq ] ||
1924                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1925                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1926                 [ $ff_poid = $lmm_oid ] ||
1927                         error "FF parent OID $ff_poid != $lmm_oid"
1928                 (($ff_pstripe == $stripe_nr)) ||
1929                         error "FF stripe $ff_pstripe != $stripe_nr"
1930
1931                 stripe_nr=$((stripe_nr + 1))
1932         done
1933 }
1934
1935 test_27z() {
1936         remote_ost_nodsh && skip "remote OST with nodsh" && return
1937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1938         test_mkdir -p $DIR/$tdir
1939
1940         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1941                 { error "setstripe -c -1 failed"; return 1; }
1942         # We need to send a write to every object to get parent FID info set.
1943         # This _should_ also work for setattr, but does not currently.
1944         # touch $DIR/$tdir/$tfile-1 ||
1945         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1946                 { error "dd $tfile-1 failed"; return 2; }
1947         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1948                 { error "setstripe -c -1 failed"; return 3; }
1949         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1950                 { error "dd $tfile-2 failed"; return 4; }
1951
1952         # make sure write RPCs have been sent to OSTs
1953         sync; sleep 5; sync
1954
1955         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1956         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1957 }
1958 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1959
1960 test_27A() { # b=19102
1961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1962         local restore_size=$($GETSTRIPE -S $MOUNT)
1963         local restore_count=$($GETSTRIPE -c $MOUNT)
1964         local restore_offset=$($GETSTRIPE -i $MOUNT)
1965         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1966         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1967                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1968         local default_size=$($GETSTRIPE -S $MOUNT)
1969         local default_offset=$($GETSTRIPE -i $MOUNT)
1970         local dsize=$((1024 * 1024))
1971         [ $default_size -eq $dsize ] ||
1972                 error "stripe size $default_size != $dsize"
1973         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1974         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1975 }
1976 run_test 27A "check filesystem-wide default LOV EA values"
1977
1978 test_27B() { # LU-2523
1979         test_mkdir -p $DIR/$tdir
1980         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1981         touch $DIR/$tdir/f0
1982         # open f1 with O_LOV_DELAY_CREATE
1983         # rename f0 onto f1
1984         # call setstripe ioctl on open file descriptor for f1
1985         # close
1986         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1987                 $DIR/$tdir/f0
1988
1989         rm -f $DIR/$tdir/f1
1990         # open f1 with O_LOV_DELAY_CREATE
1991         # unlink f1
1992         # call setstripe ioctl on open file descriptor for f1
1993         # close
1994         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1995
1996         # Allow multiop to fail in imitation of NFS's busted semantics.
1997         true
1998 }
1999 run_test 27B "call setstripe on open unlinked file/rename victim"
2000
2001 test_27C() { #LU-2871
2002         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2003
2004         declare -a ost_idx
2005         local index
2006         local found
2007         local i
2008         local j
2009
2010         test_mkdir -p $DIR/$tdir
2011         cd $DIR/$tdir
2012         for i in $(seq 0 $((OSTCOUNT - 1))); do
2013                 # set stripe across all OSTs starting from OST$i
2014                 $SETSTRIPE -i $i -c -1 $tfile$i
2015                 # get striping information
2016                 ost_idx=($($GETSTRIPE $tfile$i |
2017                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2018                 echo ${ost_idx[@]}
2019
2020                 # check the layout
2021                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2022                         error "${#ost_idx[@]} != $OSTCOUNT"
2023
2024                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2025                         found=0
2026                         for j in $(echo ${ost_idx[@]}); do
2027                                 if [ $index -eq $j ]; then
2028                                         found=1
2029                                         break
2030                                 fi
2031                         done
2032                         [ $found = 1 ] ||
2033                                 error "Can not find $index in ${ost_idx[@]}"
2034                 done
2035         done
2036 }
2037 run_test 27C "check full striping across all OSTs"
2038
2039 test_27D() {
2040         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2041         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2042         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2043         local POOL=${POOL:-testpool}
2044         local first_ost=0
2045         local last_ost=$(($OSTCOUNT - 1))
2046         local ost_step=1
2047         local ost_list=$(seq $first_ost $ost_step $last_ost)
2048         local ost_range="$first_ost $last_ost $ost_step"
2049
2050         test_mkdir -p $DIR/$tdir
2051         pool_add $POOL || error "pool_add failed"
2052         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2053
2054         local skip27D
2055         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
2056                 skip27D = "-s 29"
2057         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2058                 error "llapi_layout_test failed"
2059
2060         cleanup_pools || error "cleanup_pools failed"
2061 }
2062 run_test 27D "validate llapi_layout API"
2063
2064 # Verify that default_easize is increased from its initial value after
2065 # accessing a widely striped file.
2066 test_27E() {
2067         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2068         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2069                 skip "client does not have LU-3338 fix" && return
2070
2071         # 72 bytes is the minimum space required to store striping
2072         # information for a file striped across one OST:
2073         # (sizeof(struct lov_user_md_v3) +
2074         #  sizeof(struct lov_user_ost_data_v1))
2075         local min_easize=72
2076         $LCTL set_param -n llite.*.default_easize $min_easize ||
2077                 error "lctl set_param failed"
2078         local easize=$($LCTL get_param -n llite.*.default_easize)
2079
2080         [ $easize -eq $min_easize ] ||
2081                 error "failed to set default_easize"
2082
2083         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2084                 error "setstripe failed"
2085         cat $DIR/$tfile
2086         rm $DIR/$tfile
2087
2088         easize=$($LCTL get_param -n llite.*.default_easize)
2089
2090         [ $easize -gt $min_easize ] ||
2091                 error "default_easize not updated"
2092 }
2093 run_test 27E "check that default extended attribute size properly increases"
2094
2095 test_27F() { # LU-5346/LU-7975
2096
2097         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2098
2099         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2100                 skip "Need MDS version at least 2.8.51" && return
2101
2102         test_mkdir -p $DIR/$tdir
2103         rm -f $DIR/$tdir/f0
2104         $SETSTRIPE -c 2 $DIR/$tdir
2105
2106         # stop all OSTs to reproduce situation for LU-7975 ticket
2107         for num in $(seq $OSTCOUNT); do
2108                 stop ost$num
2109         done
2110
2111         # open/create f0 with O_LOV_DELAY_CREATE
2112         # truncate f0 to a non-0 size
2113         # close
2114         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2115
2116         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2117         # open/write it again to force delayed layout creation
2118         cat /etc/hosts > $DIR/$tdir/f0 &
2119         catpid=$!
2120
2121         # restart OSTs
2122         for num in $(seq $OSTCOUNT); do
2123                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2124                         error "ost$num failed to start"
2125         done
2126
2127         wait $catpid || error "cat failed"
2128
2129         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2130         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2131
2132 }
2133 run_test 27F "Client resend delayed layout creation with non-zero size"
2134
2135 # createtest also checks that device nodes are created and
2136 # then visible correctly (#2091)
2137 test_28() { # bug 2091
2138         test_mkdir $DIR/d28
2139         $CREATETEST $DIR/d28/ct || error
2140 }
2141 run_test 28 "create/mknod/mkdir with bad file types ============"
2142
2143 test_29() {
2144         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2145         sync; sleep 1; sync # flush out any dirty pages from previous tests
2146         cancel_lru_locks
2147         test_mkdir $DIR/d29
2148         touch $DIR/d29/foo
2149         log 'first d29'
2150         ls -l $DIR/d29
2151
2152         declare -i LOCKCOUNTORIG=0
2153         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2154                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2155         done
2156         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2157
2158         declare -i LOCKUNUSEDCOUNTORIG=0
2159         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2160                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2161         done
2162
2163         log 'second d29'
2164         ls -l $DIR/d29
2165         log 'done'
2166
2167         declare -i LOCKCOUNTCURRENT=0
2168         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2169                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2170         done
2171
2172         declare -i LOCKUNUSEDCOUNTCURRENT=0
2173         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2174                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2175         done
2176
2177         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2178                 $LCTL set_param -n ldlm.dump_namespaces ""
2179                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2180                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2181                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2182                 return 2
2183         fi
2184         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2185                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2186                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2187                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2188                 return 3
2189         fi
2190 }
2191 run_test 29 "IT_GETATTR regression  ============================"
2192
2193 test_30a() { # was test_30
2194         cp $(which ls) $DIR || cp /bin/ls $DIR
2195         $DIR/ls / || error
2196         rm $DIR/ls
2197 }
2198 run_test 30a "execute binary from Lustre (execve) =============="
2199
2200 test_30b() {
2201         cp `which ls` $DIR || cp /bin/ls $DIR
2202         chmod go+rx $DIR/ls
2203         $RUNAS $DIR/ls / || error
2204         rm $DIR/ls
2205 }
2206 run_test 30b "execute binary from Lustre as non-root ==========="
2207
2208 test_30c() { # b=22376
2209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2210         cp `which ls` $DIR || cp /bin/ls $DIR
2211         chmod a-rw $DIR/ls
2212         cancel_lru_locks mdc
2213         cancel_lru_locks osc
2214         $RUNAS $DIR/ls / || error
2215         rm -f $DIR/ls
2216 }
2217 run_test 30c "execute binary from Lustre without read perms ===="
2218
2219 test_31a() {
2220         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2221         $CHECKSTAT -a $DIR/f31 || error
2222 }
2223 run_test 31a "open-unlink file =================================="
2224
2225 test_31b() {
2226         touch $DIR/f31 || error
2227         ln $DIR/f31 $DIR/f31b || error
2228         $MULTIOP $DIR/f31b Ouc || error
2229         $CHECKSTAT -t file $DIR/f31 || error
2230 }
2231 run_test 31b "unlink file with multiple links while open ======="
2232
2233 test_31c() {
2234         touch $DIR/f31 || error
2235         ln $DIR/f31 $DIR/f31c || error
2236         multiop_bg_pause $DIR/f31 O_uc || return 1
2237         MULTIPID=$!
2238         $MULTIOP $DIR/f31c Ouc
2239         kill -USR1 $MULTIPID
2240         wait $MULTIPID
2241 }
2242 run_test 31c "open-unlink file with multiple links ============="
2243
2244 test_31d() {
2245         opendirunlink $DIR/d31d $DIR/d31d || error
2246         $CHECKSTAT -a $DIR/d31d || error
2247 }
2248 run_test 31d "remove of open directory ========================="
2249
2250 test_31e() { # bug 2904
2251         openfilleddirunlink $DIR/d31e || error
2252 }
2253 run_test 31e "remove of open non-empty directory ==============="
2254
2255 test_31f() { # bug 4554
2256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2257         set -vx
2258         test_mkdir $DIR/d31f
2259         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2260         cp /etc/hosts $DIR/d31f
2261         ls -l $DIR/d31f
2262         $GETSTRIPE $DIR/d31f/hosts
2263         multiop_bg_pause $DIR/d31f D_c || return 1
2264         MULTIPID=$!
2265
2266         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2267         test_mkdir $DIR/d31f
2268         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2269         cp /etc/hosts $DIR/d31f
2270         ls -l $DIR/d31f
2271         $GETSTRIPE $DIR/d31f/hosts
2272         multiop_bg_pause $DIR/d31f D_c || return 1
2273         MULTIPID2=$!
2274
2275         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2276         wait $MULTIPID || error "first opendir $MULTIPID failed"
2277
2278         sleep 6
2279
2280         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2281         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2282         set +vx
2283 }
2284 run_test 31f "remove of open directory with open-unlink file ==="
2285
2286 test_31g() {
2287         echo "-- cross directory link --"
2288         test_mkdir -c1 $DIR/${tdir}ga
2289         test_mkdir -c1 $DIR/${tdir}gb
2290         touch $DIR/${tdir}ga/f
2291         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2292         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2293         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2294         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2295         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2296 }
2297 run_test 31g "cross directory link==============="
2298
2299 test_31h() {
2300         echo "-- cross directory link --"
2301         test_mkdir -c1 $DIR/${tdir}
2302         test_mkdir -c1 $DIR/${tdir}/dir
2303         touch $DIR/${tdir}/f
2304         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2305         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2306         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2307         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2308         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2309 }
2310 run_test 31h "cross directory link under child==============="
2311
2312 test_31i() {
2313         echo "-- cross directory link --"
2314         test_mkdir -c1 $DIR/$tdir
2315         test_mkdir -c1 $DIR/$tdir/dir
2316         touch $DIR/$tdir/dir/f
2317         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2318         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2319         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2320         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2321         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2322 }
2323 run_test 31i "cross directory link under parent==============="
2324
2325 test_31j() {
2326         test_mkdir -c1 -p $DIR/$tdir
2327         test_mkdir -c1 -p $DIR/$tdir/dir1
2328         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2329         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2330         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2331         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2332         return 0
2333 }
2334 run_test 31j "link for directory==============="
2335
2336 test_31k() {
2337         test_mkdir -c1 -p $DIR/$tdir
2338         touch $DIR/$tdir/s
2339         touch $DIR/$tdir/exist
2340         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2341         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2342         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2343         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2344         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2345         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2346         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2347         return 0
2348 }
2349 run_test 31k "link to file: the same, non-existing, dir==============="
2350
2351 test_31m() {
2352         mkdir $DIR/d31m
2353         touch $DIR/d31m/s
2354         mkdir $DIR/d31m2
2355         touch $DIR/d31m2/exist
2356         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2357         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2358         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2359         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2360         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2361         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2362         return 0
2363 }
2364 run_test 31m "link to file: the same, non-existing, dir==============="
2365
2366 test_31n() {
2367         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2368         nlink=$(stat --format=%h $DIR/$tfile)
2369         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2370         local fd=$(free_fd)
2371         local cmd="exec $fd<$DIR/$tfile"
2372         eval $cmd
2373         cmd="exec $fd<&-"
2374         trap "eval $cmd" EXIT
2375         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2376         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2377         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2378         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2379         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2380         eval $cmd
2381 }
2382 run_test 31n "check link count of unlinked file"
2383
2384 link_one() {
2385         local TEMPNAME=$(mktemp $1_XXXXXX)
2386         mlink $TEMPNAME $1 2> /dev/null &&
2387                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2388         munlink $TEMPNAME
2389 }
2390
2391 test_31o() { # LU-2901
2392         test_mkdir -p $DIR/$tdir
2393         for LOOP in $(seq 100); do
2394                 rm -f $DIR/$tdir/$tfile*
2395                 for THREAD in $(seq 8); do
2396                         link_one $DIR/$tdir/$tfile.$LOOP &
2397                 done
2398                 wait
2399                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2400                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2401                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2402                         break || true
2403         done
2404 }
2405 run_test 31o "duplicate hard links with same filename"
2406
2407 test_31p() {
2408         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2409
2410         test_mkdir $DIR/$tdir
2411         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2412         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2413
2414         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2415                 error "open unlink test1 failed"
2416         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2417                 error "open unlink test2 failed"
2418
2419         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2420                 error "test1 still exists"
2421         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2422                 error "test2 still exists"
2423 }
2424 run_test 31p "remove of open striped directory"
2425
2426 cleanup_test32_mount() {
2427         local rc=0
2428         trap 0
2429         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$/p')
2430         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2431         losetup -d $loopdev || true
2432         rm -rf $DIR/$tdir/ext2-mountpoint
2433         return $rc
2434 }
2435
2436 test_32a() {
2437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2438         echo "== more mountpoints and symlinks ================="
2439         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2440         trap cleanup_test32_mount EXIT
2441         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2442         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2443         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2444         cleanup_test32_mount
2445 }
2446 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2447
2448 test_32b() {
2449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2450         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2451         trap cleanup_test32_mount EXIT
2452         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2453         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2454         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2455         cleanup_test32_mount
2456 }
2457 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2458
2459 test_32c() {
2460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2461         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2462         trap cleanup_test32_mount EXIT
2463         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2464         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2465         test_mkdir -p $DIR/$tdir/d2/test_dir
2466         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2467         cleanup_test32_mount
2468 }
2469 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2470
2471 test_32d() {
2472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2473         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2474         trap cleanup_test32_mount EXIT
2475         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2476         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2477         test_mkdir -p $DIR/$tdir/d2/test_dir
2478         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2479         cleanup_test32_mount
2480 }
2481 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2482
2483 test_32e() {
2484         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2485         test_mkdir -p $DIR/d32e/tmp
2486         TMP_DIR=$DIR/d32e/tmp
2487         ln -s $DIR/d32e $TMP_DIR/symlink11
2488         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2489         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2490         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2491 }
2492 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2493
2494 test_32f() {
2495         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2496         test_mkdir -p $DIR/d32f/tmp
2497         TMP_DIR=$DIR/d32f/tmp
2498         ln -s $DIR/d32f $TMP_DIR/symlink11
2499         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2500         ls $DIR/d32f/tmp/symlink11  || error
2501         ls $DIR/d32f/symlink01 || error
2502 }
2503 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2504
2505 test_32g() {
2506         TMP_DIR=$DIR/$tdir/tmp
2507         test_mkdir -p $DIR/$tdir/tmp
2508         test_mkdir $DIR/${tdir}2
2509         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2510         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2511         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2512         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2513         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2514         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2515 }
2516 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2517
2518 test_32h() {
2519         rm -fr $DIR/$tdir $DIR/${tdir}2
2520         TMP_DIR=$DIR/$tdir/tmp
2521         test_mkdir -p $DIR/$tdir/tmp
2522         test_mkdir $DIR/${tdir}2
2523         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2524         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2525         ls $TMP_DIR/symlink12 || error
2526         ls $DIR/$tdir/symlink02  || error
2527 }
2528 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2529
2530 test_32i() {
2531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2532         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2533         trap cleanup_test32_mount EXIT
2534         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2535         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2536         touch $DIR/$tdir/test_file
2537         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2538         cleanup_test32_mount
2539 }
2540 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2541
2542 test_32j() {
2543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2544         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2545         trap cleanup_test32_mount EXIT
2546         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2547         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2548         touch $DIR/$tdir/test_file
2549         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2550         cleanup_test32_mount
2551 }
2552 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2553
2554 test_32k() {
2555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2556         rm -fr $DIR/$tdir
2557         trap cleanup_test32_mount EXIT
2558         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2559         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2560         test_mkdir -p $DIR/$tdir/d2
2561         touch $DIR/$tdir/d2/test_file || error
2562         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2563         cleanup_test32_mount
2564 }
2565 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2566
2567 test_32l() {
2568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2569         rm -fr $DIR/$tdir
2570         trap cleanup_test32_mount EXIT
2571         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2572         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2573         test_mkdir -p $DIR/$tdir/d2
2574         touch $DIR/$tdir/d2/test_file
2575         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2576         cleanup_test32_mount
2577 }
2578 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2579
2580 test_32m() {
2581         rm -fr $DIR/d32m
2582         test_mkdir -p $DIR/d32m/tmp
2583         TMP_DIR=$DIR/d32m/tmp
2584         ln -s $DIR $TMP_DIR/symlink11
2585         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2586         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2587         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2588 }
2589 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2590
2591 test_32n() {
2592         rm -fr $DIR/d32n
2593         test_mkdir -p $DIR/d32n/tmp
2594         TMP_DIR=$DIR/d32n/tmp
2595         ln -s $DIR $TMP_DIR/symlink11
2596         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2597         ls -l $DIR/d32n/tmp/symlink11  || error
2598         ls -l $DIR/d32n/symlink01 || error
2599 }
2600 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2601
2602 test_32o() {
2603         touch $DIR/$tfile
2604         test_mkdir -p $DIR/d32o/tmp
2605         TMP_DIR=$DIR/d32o/tmp
2606         ln -s $DIR/$tfile $TMP_DIR/symlink12
2607         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2608         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2609         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2610         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2611         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2612 }
2613 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2614
2615 test_32p() {
2616     log 32p_1
2617         rm -fr $DIR/d32p
2618     log 32p_2
2619         rm -f $DIR/$tfile
2620     log 32p_3
2621         touch $DIR/$tfile
2622     log 32p_4
2623         test_mkdir -p $DIR/d32p/tmp
2624     log 32p_5
2625         TMP_DIR=$DIR/d32p/tmp
2626     log 32p_6
2627         ln -s $DIR/$tfile $TMP_DIR/symlink12
2628     log 32p_7
2629         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2630     log 32p_8
2631         cat $DIR/d32p/tmp/symlink12 || error
2632     log 32p_9
2633         cat $DIR/d32p/symlink02 || error
2634     log 32p_10
2635 }
2636 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2637
2638 cleanup_testdir_mount() {
2639         local rc=0
2640         trap 0
2641         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$/p')
2642         $UMOUNT $DIR/$tdir || rc=$?
2643         losetup -d $loopdev || true
2644         rm -rf $DIR/$tdir
2645         return $rc
2646 }
2647
2648 test_32q() {
2649         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2650         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2651         trap cleanup_testdir_mount EXIT
2652         test_mkdir -p $DIR/$tdir
2653         touch $DIR/$tdir/under_the_mount
2654         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2655         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2656         cleanup_testdir_mount
2657 }
2658 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2659
2660 test_32r() {
2661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2662         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2663         trap cleanup_testdir_mount EXIT
2664         test_mkdir -p $DIR/$tdir
2665         touch $DIR/$tdir/under_the_mount
2666         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2667         ls $DIR/$tdir | grep -q under_the_mount && error || true
2668         cleanup_testdir_mount
2669 }
2670 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2671
2672 test_33aa() {
2673         rm -f $DIR/$tfile
2674         touch $DIR/$tfile
2675         chmod 444 $DIR/$tfile
2676         chown $RUNAS_ID $DIR/$tfile
2677         log 33_1
2678         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2679         log 33_2
2680 }
2681 run_test 33aa "write file with mode 444 (should return error) ===="
2682
2683 test_33a() {
2684         rm -fr $DIR/d33
2685         test_mkdir -p $DIR/d33
2686         chown $RUNAS_ID $DIR/d33
2687         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2688         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2689                 error "open RDWR" || true
2690 }
2691 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2692
2693 test_33b() {
2694         rm -fr $DIR/d33
2695         test_mkdir -p $DIR/d33
2696         chown $RUNAS_ID $DIR/d33
2697         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2698 }
2699 run_test 33b "test open file with malformed flags (No panic)"
2700
2701 test_33c() {
2702         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2703         local ostnum
2704         local ostname
2705         local write_bytes
2706         local all_zeros
2707
2708         remote_ost_nodsh && skip "remote OST with nodsh" && return
2709         all_zeros=:
2710         rm -fr $DIR/d33
2711         test_mkdir -p $DIR/d33
2712         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2713
2714         sync
2715         for ostnum in $(seq $OSTCOUNT); do
2716                 # test-framework's OST numbering is one-based, while Lustre's
2717                 # is zero-based
2718                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2719                 # Parsing llobdstat's output sucks; we could grep the /proc
2720                 # path, but that's likely to not be as portable as using the
2721                 # llobdstat utility.  So we parse lctl output instead.
2722                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2723                         obdfilter/$ostname/stats |
2724                         awk '/^write_bytes/ {print $7}' )
2725                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2726                 if (( ${write_bytes:-0} > 0 ))
2727                 then
2728                         all_zeros=false
2729                         break;
2730                 fi
2731         done
2732
2733         $all_zeros || return 0
2734
2735         # Write four bytes
2736         echo foo > $DIR/d33/bar
2737         # Really write them
2738         sync
2739
2740         # Total up write_bytes after writing.  We'd better find non-zeros.
2741         for ostnum in $(seq $OSTCOUNT); do
2742                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2743                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2744                         obdfilter/$ostname/stats |
2745                         awk '/^write_bytes/ {print $7}' )
2746                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2747                 if (( ${write_bytes:-0} > 0 ))
2748                 then
2749                         all_zeros=false
2750                         break;
2751                 fi
2752         done
2753
2754         if $all_zeros
2755         then
2756                 for ostnum in $(seq $OSTCOUNT); do
2757                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2758                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2759                         do_facet ost$ostnum lctl get_param -n \
2760                                 obdfilter/$ostname/stats
2761                 done
2762                 error "OST not keeping write_bytes stats (b22312)"
2763         fi
2764 }
2765 run_test 33c "test llobdstat and write_bytes"
2766
2767 test_33d() {
2768         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2770         local MDTIDX=1
2771         local remote_dir=$DIR/$tdir/remote_dir
2772
2773         test_mkdir -p $DIR/$tdir
2774         $LFS mkdir -i $MDTIDX $remote_dir ||
2775                 error "create remote directory failed"
2776
2777         touch $remote_dir/$tfile
2778         chmod 444 $remote_dir/$tfile
2779         chown $RUNAS_ID $remote_dir/$tfile
2780
2781         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2782
2783         chown $RUNAS_ID $remote_dir
2784         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2785                                         error "create" || true
2786         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2787                                     error "open RDWR" || true
2788         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2789 }
2790 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2791
2792 test_33e() {
2793         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2794
2795         mkdir $DIR/$tdir
2796
2797         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2798         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2799         mkdir $DIR/$tdir/local_dir
2800
2801         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2802         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2803         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2804
2805         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2806                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2807
2808         rmdir $DIR/$tdir/* || error "rmdir failed"
2809
2810         umask 777
2811         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2812         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2813         mkdir $DIR/$tdir/local_dir
2814
2815         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2816         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2817         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2818
2819         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2820                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2821
2822         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2823
2824         umask 000
2825         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2826         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2827         mkdir $DIR/$tdir/local_dir
2828
2829         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2830         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2831         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2832
2833         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2834                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2835 }
2836 run_test 33e "mkdir and striped directory should have same mode"
2837
2838 cleanup_33f() {
2839         trap 0
2840         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2841 }
2842
2843 test_33f() {
2844         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2845         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2846
2847         mkdir $DIR/$tdir
2848         chmod go+rwx $DIR/$tdir
2849         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2850         trap cleanup_33f EXIT
2851
2852         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2853                 error "cannot create striped directory"
2854
2855         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2856                 error "cannot create files in striped directory"
2857
2858         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2859                 error "cannot remove files in striped directory"
2860
2861         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2862                 error "cannot remove striped directory"
2863
2864         cleanup_33f
2865 }
2866 run_test 33f "nonroot user can create, access, and remove a striped directory"
2867
2868 test_33g() {
2869         mkdir -p $DIR/$tdir/dir2
2870
2871         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2872         echo $err
2873         [[ $err =~ "exists" ]] || error "Not exists error"
2874 }
2875 run_test 33g "nonroot user create already existing root created file"
2876
2877 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2878 test_34a() {
2879         rm -f $DIR/f34
2880         $MCREATE $DIR/f34 || error
2881         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2882         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2883         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2884         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2885 }
2886 run_test 34a "truncate file that has not been opened ==========="
2887
2888 test_34b() {
2889         [ ! -f $DIR/f34 ] && test_34a
2890         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2891         $OPENFILE -f O_RDONLY $DIR/f34
2892         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2893         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2894 }
2895 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2896
2897 test_34c() {
2898         [ ! -f $DIR/f34 ] && test_34a
2899         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2900         $OPENFILE -f O_RDWR $DIR/f34
2901         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2902         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2903 }
2904 run_test 34c "O_RDWR opening file-with-size works =============="
2905
2906 test_34d() {
2907         [ ! -f $DIR/f34 ] && test_34a
2908         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2909         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2910         rm $DIR/f34
2911 }
2912 run_test 34d "write to sparse file ============================="
2913
2914 test_34e() {
2915         rm -f $DIR/f34e
2916         $MCREATE $DIR/f34e || error
2917         $TRUNCATE $DIR/f34e 1000 || error
2918         $CHECKSTAT -s 1000 $DIR/f34e || error
2919         $OPENFILE -f O_RDWR $DIR/f34e
2920         $CHECKSTAT -s 1000 $DIR/f34e || error
2921 }
2922 run_test 34e "create objects, some with size and some without =="
2923
2924 test_34f() { # bug 6242, 6243
2925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2926         SIZE34F=48000
2927         rm -f $DIR/f34f
2928         $MCREATE $DIR/f34f || error
2929         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2930         dd if=$DIR/f34f of=$TMP/f34f
2931         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2932         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2933         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2934         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2935         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2936 }
2937 run_test 34f "read from a file with no objects until EOF ======="
2938
2939 test_34g() {
2940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2941         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2942         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2943         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2944         cancel_lru_locks osc
2945         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2946                 error "wrong size after lock cancel"
2947
2948         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2949         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2950                 error "expanding truncate failed"
2951         cancel_lru_locks osc
2952         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2953                 error "wrong expanded size after lock cancel"
2954 }
2955 run_test 34g "truncate long file ==============================="
2956
2957 test_34h() {
2958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2959         local gid=10
2960         local sz=1000
2961
2962         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2963         sync # Flush the cache so that multiop below does not block on cache
2964              # flush when getting the group lock
2965         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2966         MULTIPID=$!
2967
2968         # Since just timed wait is not good enough, let's do a sync write
2969         # that way we are sure enough time for a roundtrip + processing
2970         # passed + 2 seconds of extra margin.
2971         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2972         rm $DIR/${tfile}-1
2973         sleep 2
2974
2975         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2976                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2977                 kill -9 $MULTIPID
2978         fi
2979         wait $MULTIPID
2980         local nsz=`stat -c %s $DIR/$tfile`
2981         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2982 }
2983 run_test 34h "ftruncate file under grouplock should not block"
2984
2985 test_35a() {
2986         cp /bin/sh $DIR/f35a
2987         chmod 444 $DIR/f35a
2988         chown $RUNAS_ID $DIR/f35a
2989         $RUNAS $DIR/f35a && error || true
2990         rm $DIR/f35a
2991 }
2992 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2993
2994 test_36a() {
2995         rm -f $DIR/f36
2996         utime $DIR/f36 || error
2997 }
2998 run_test 36a "MDS utime check (mknod, utime) ==================="
2999
3000 test_36b() {
3001         echo "" > $DIR/f36
3002         utime $DIR/f36 || error
3003 }
3004 run_test 36b "OST utime check (open, utime) ===================="
3005
3006 test_36c() {
3007         rm -f $DIR/d36/f36
3008         test_mkdir $DIR/d36
3009         chown $RUNAS_ID $DIR/d36
3010         $RUNAS utime $DIR/d36/f36 || error
3011 }
3012 run_test 36c "non-root MDS utime check (mknod, utime) =========="
3013
3014 test_36d() {
3015         [ ! -d $DIR/d36 ] && test_36c
3016         echo "" > $DIR/d36/f36
3017         $RUNAS utime $DIR/d36/f36 || error
3018 }
3019 run_test 36d "non-root OST utime check (open, utime) ==========="
3020
3021 test_36e() {
3022         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3023         test_mkdir -p $DIR/$tdir
3024         touch $DIR/$tdir/$tfile
3025         $RUNAS utime $DIR/$tdir/$tfile && \
3026                 error "utime worked, expected failure" || true
3027 }
3028 run_test 36e "utime on non-owned file (should return error) ===="
3029
3030 subr_36fh() {
3031         local fl="$1"
3032         local LANG_SAVE=$LANG
3033         local LC_LANG_SAVE=$LC_LANG
3034         export LANG=C LC_LANG=C # for date language
3035
3036         DATESTR="Dec 20  2000"
3037         test_mkdir -p $DIR/$tdir
3038         lctl set_param fail_loc=$fl
3039         date; date +%s
3040         cp /etc/hosts $DIR/$tdir/$tfile
3041         sync & # write RPC generated with "current" inode timestamp, but delayed
3042         sleep 1
3043         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3044         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3045         cancel_lru_locks osc
3046         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3047         date; date +%s
3048         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3049                 echo "BEFORE: $LS_BEFORE" && \
3050                 echo "AFTER : $LS_AFTER" && \
3051                 echo "WANT  : $DATESTR" && \
3052                 error "$DIR/$tdir/$tfile timestamps changed" || true
3053
3054         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3055 }
3056
3057 test_36f() {
3058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3059         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3060         subr_36fh "0x80000214"
3061 }
3062 run_test 36f "utime on file racing with OST BRW write =========="
3063
3064 test_36g() {
3065         remote_ost_nodsh && skip "remote OST with nodsh" && return
3066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3067         local fmd_max_age
3068         local fmd_before
3069         local fmd_after
3070
3071         test_mkdir -p $DIR/$tdir
3072         fmd_max_age=$(do_facet ost1 \
3073                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3074                 head -n 1")
3075
3076         fmd_before=$(do_facet ost1 \
3077                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3078         touch $DIR/$tdir/$tfile
3079         sleep $((fmd_max_age + 12))
3080         fmd_after=$(do_facet ost1 \
3081                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3082
3083         echo "fmd_before: $fmd_before"
3084         echo "fmd_after: $fmd_after"
3085         [[ $fmd_after -gt $fmd_before ]] &&
3086                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3087                 error "fmd didn't expire after ping" || true
3088 }
3089 run_test 36g "filter mod data cache expiry ====================="
3090
3091 test_36h() {
3092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3093         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3094         subr_36fh "0x80000227"
3095 }
3096 run_test 36h "utime on file racing with OST BRW write =========="
3097
3098 test_36i() {
3099         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3100
3101         test_mkdir $DIR/$tdir
3102         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3103
3104         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3105         local new_mtime=$((mtime + 200))
3106
3107         #change Modify time of striped dir
3108         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3109                         error "change mtime failed"
3110
3111         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3112
3113         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3114 }
3115 run_test 36i "change mtime on striped directory"
3116
3117 # test_37 - duplicate with tests 32q 32r
3118
3119 test_38() {
3120         local file=$DIR/$tfile
3121         touch $file
3122         openfile -f O_DIRECTORY $file
3123         local RC=$?
3124         local ENOTDIR=20
3125         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3126         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3127 }
3128 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3129
3130 test_39a() { # was test_39
3131         touch $DIR/$tfile
3132         touch $DIR/${tfile}2
3133 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3134 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3135 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3136         sleep 2
3137         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3138         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3139                 echo "mtime"
3140                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3141                 echo "atime"
3142                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3143                 echo "ctime"
3144                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3145                 error "O_TRUNC didn't change timestamps"
3146         fi
3147 }
3148 run_test 39a "mtime changed on create ==========================="
3149
3150 test_39b() {
3151         test_mkdir -p -c1 $DIR/$tdir
3152         cp -p /etc/passwd $DIR/$tdir/fopen
3153         cp -p /etc/passwd $DIR/$tdir/flink
3154         cp -p /etc/passwd $DIR/$tdir/funlink
3155         cp -p /etc/passwd $DIR/$tdir/frename
3156         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3157
3158         sleep 1
3159         echo "aaaaaa" >> $DIR/$tdir/fopen
3160         echo "aaaaaa" >> $DIR/$tdir/flink
3161         echo "aaaaaa" >> $DIR/$tdir/funlink
3162         echo "aaaaaa" >> $DIR/$tdir/frename
3163
3164         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3165         local link_new=`stat -c %Y $DIR/$tdir/flink`
3166         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3167         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3168
3169         cat $DIR/$tdir/fopen > /dev/null
3170         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3171         rm -f $DIR/$tdir/funlink2
3172         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3173
3174         for (( i=0; i < 2; i++ )) ; do
3175                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3176                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3177                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3178                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3179
3180                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3181                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3182                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3183                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3184
3185                 cancel_lru_locks osc
3186                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3187         done
3188 }
3189 run_test 39b "mtime change on open, link, unlink, rename  ======"
3190
3191 # this should be set to past
3192 TEST_39_MTIME=`date -d "1 year ago" +%s`
3193
3194 # bug 11063
3195 test_39c() {
3196         touch $DIR1/$tfile
3197         sleep 2
3198         local mtime0=`stat -c %Y $DIR1/$tfile`
3199
3200         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3201         local mtime1=`stat -c %Y $DIR1/$tfile`
3202         [ "$mtime1" = $TEST_39_MTIME ] || \
3203                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3204
3205         local d1=`date +%s`
3206         echo hello >> $DIR1/$tfile
3207         local d2=`date +%s`
3208         local mtime2=`stat -c %Y $DIR1/$tfile`
3209         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3210                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3211
3212         mv $DIR1/$tfile $DIR1/$tfile-1
3213
3214         for (( i=0; i < 2; i++ )) ; do
3215                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3216                 [ "$mtime2" = "$mtime3" ] || \
3217                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3218
3219                 cancel_lru_locks osc
3220                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3221         done
3222 }
3223 run_test 39c "mtime change on rename ==========================="
3224
3225 # bug 21114
3226 test_39d() {
3227         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3228         touch $DIR1/$tfile
3229
3230         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3231
3232         for (( i=0; i < 2; i++ )) ; do
3233                 local mtime=`stat -c %Y $DIR1/$tfile`
3234                 [ $mtime = $TEST_39_MTIME ] || \
3235                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3236
3237                 cancel_lru_locks osc
3238                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3239         done
3240 }
3241 run_test 39d "create, utime, stat =============================="
3242
3243 # bug 21114
3244 test_39e() {
3245         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3246         touch $DIR1/$tfile
3247         local mtime1=`stat -c %Y $DIR1/$tfile`
3248
3249         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3250
3251         for (( i=0; i < 2; i++ )) ; do
3252                 local mtime2=`stat -c %Y $DIR1/$tfile`
3253                 [ $mtime2 = $TEST_39_MTIME ] || \
3254                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3255
3256                 cancel_lru_locks osc
3257                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3258         done
3259 }
3260 run_test 39e "create, stat, utime, stat ========================"
3261
3262 # bug 21114
3263 test_39f() {
3264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3265         touch $DIR1/$tfile
3266         mtime1=`stat -c %Y $DIR1/$tfile`
3267
3268         sleep 2
3269         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3270
3271         for (( i=0; i < 2; i++ )) ; do
3272                 local mtime2=`stat -c %Y $DIR1/$tfile`
3273                 [ $mtime2 = $TEST_39_MTIME ] || \
3274                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3275
3276                 cancel_lru_locks osc
3277                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3278         done
3279 }
3280 run_test 39f "create, stat, sleep, utime, stat ================="
3281
3282 # bug 11063
3283 test_39g() {
3284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3285         echo hello >> $DIR1/$tfile
3286         local mtime1=`stat -c %Y $DIR1/$tfile`
3287
3288         sleep 2
3289         chmod o+r $DIR1/$tfile
3290
3291         for (( i=0; i < 2; i++ )) ; do
3292                 local mtime2=`stat -c %Y $DIR1/$tfile`
3293                 [ "$mtime1" = "$mtime2" ] || \
3294                         error "lost mtime: $mtime2, should be $mtime1"
3295
3296                 cancel_lru_locks osc
3297                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3298         done
3299 }
3300 run_test 39g "write, chmod, stat ==============================="
3301
3302 # bug 11063
3303 test_39h() {
3304         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3305         touch $DIR1/$tfile
3306         sleep 1
3307
3308         local d1=`date`
3309         echo hello >> $DIR1/$tfile
3310         local mtime1=`stat -c %Y $DIR1/$tfile`
3311
3312         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3313         local d2=`date`
3314         if [ "$d1" != "$d2" ]; then
3315                 echo "write and touch not within one second"
3316         else
3317                 for (( i=0; i < 2; i++ )) ; do
3318                         local mtime2=`stat -c %Y $DIR1/$tfile`
3319                         [ "$mtime2" = $TEST_39_MTIME ] || \
3320                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3321
3322                         cancel_lru_locks osc
3323                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3324                 done
3325         fi
3326 }
3327 run_test 39h "write, utime within one second, stat ============="
3328
3329 test_39i() {
3330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3331         touch $DIR1/$tfile
3332         sleep 1
3333
3334         echo hello >> $DIR1/$tfile
3335         local mtime1=`stat -c %Y $DIR1/$tfile`
3336
3337         mv $DIR1/$tfile $DIR1/$tfile-1
3338
3339         for (( i=0; i < 2; i++ )) ; do
3340                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3341
3342                 [ "$mtime1" = "$mtime2" ] || \
3343                         error "lost mtime: $mtime2, should be $mtime1"
3344
3345                 cancel_lru_locks osc
3346                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3347         done
3348 }
3349 run_test 39i "write, rename, stat =============================="
3350
3351 test_39j() {
3352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3353         start_full_debug_logging
3354         touch $DIR1/$tfile
3355         sleep 1
3356
3357         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3358         lctl set_param fail_loc=0x80000412
3359         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3360                 error "multiop failed"
3361         local multipid=$!
3362         local mtime1=`stat -c %Y $DIR1/$tfile`
3363
3364         mv $DIR1/$tfile $DIR1/$tfile-1
3365
3366         kill -USR1 $multipid
3367         wait $multipid || error "multiop close failed"
3368
3369         for (( i=0; i < 2; i++ )) ; do
3370                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3371                 [ "$mtime1" = "$mtime2" ] ||
3372                         error "mtime is lost on close: $mtime2, " \
3373                               "should be $mtime1"
3374
3375                 cancel_lru_locks osc
3376                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3377         done
3378         lctl set_param fail_loc=0
3379         stop_full_debug_logging
3380 }
3381 run_test 39j "write, rename, close, stat ======================="
3382
3383 test_39k() {
3384         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3385         touch $DIR1/$tfile
3386         sleep 1
3387
3388         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3389         local multipid=$!
3390         local mtime1=`stat -c %Y $DIR1/$tfile`
3391
3392         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3393
3394         kill -USR1 $multipid
3395         wait $multipid || error "multiop close failed"
3396
3397         for (( i=0; i < 2; i++ )) ; do
3398                 local mtime2=`stat -c %Y $DIR1/$tfile`
3399
3400                 [ "$mtime2" = $TEST_39_MTIME ] || \
3401                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3402
3403                 cancel_lru_locks osc
3404                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3405         done
3406 }
3407 run_test 39k "write, utime, close, stat ========================"
3408
3409 # this should be set to future
3410 TEST_39_ATIME=`date -d "1 year" +%s`
3411
3412 test_39l() {
3413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3414         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3415         local atime_diff=$(do_facet $SINGLEMDS \
3416                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3417         rm -rf $DIR/$tdir
3418         mkdir -p $DIR/$tdir
3419
3420         # test setting directory atime to future
3421         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3422         local atime=$(stat -c %X $DIR/$tdir)
3423         [ "$atime" = $TEST_39_ATIME ] ||
3424                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3425
3426         # test setting directory atime from future to now
3427         local now=$(date +%s)
3428         touch -a -d @$now $DIR/$tdir
3429
3430         atime=$(stat -c %X $DIR/$tdir)
3431         [ "$atime" -eq "$now"  ] ||
3432                 error "atime is not updated from future: $atime, $now"
3433
3434         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3435         sleep 3
3436
3437         # test setting directory atime when now > dir atime + atime_diff
3438         local d1=$(date +%s)
3439         ls $DIR/$tdir
3440         local d2=$(date +%s)
3441         cancel_lru_locks mdc
3442         atime=$(stat -c %X $DIR/$tdir)
3443         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3444                 error "atime is not updated  : $atime, should be $d2"
3445
3446         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3447         sleep 3
3448
3449         # test not setting directory atime when now < dir atime + atime_diff
3450         ls $DIR/$tdir
3451         cancel_lru_locks mdc
3452         atime=$(stat -c %X $DIR/$tdir)
3453         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3454                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3455
3456         do_facet $SINGLEMDS \
3457                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3458 }
3459 run_test 39l "directory atime update ==========================="
3460
3461 test_39m() {
3462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3463         touch $DIR1/$tfile
3464         sleep 2
3465         local far_past_mtime=$(date -d "May 29 1953" +%s)
3466         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3467
3468         touch -m -d @$far_past_mtime $DIR1/$tfile
3469         touch -a -d @$far_past_atime $DIR1/$tfile
3470
3471         for (( i=0; i < 2; i++ )) ; do
3472                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3473                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3474                         error "atime or mtime set incorrectly"
3475
3476                 cancel_lru_locks osc
3477                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3478         done
3479 }
3480 run_test 39m "test atime and mtime before 1970"
3481
3482 test_39n() { # LU-3832
3483         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3484         local atime_diff=$(do_facet $SINGLEMDS \
3485                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3486         local atime0
3487         local atime1
3488         local atime2
3489
3490         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3491
3492         rm -rf $DIR/$tfile
3493         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3494         atime0=$(stat -c %X $DIR/$tfile)
3495
3496         sleep 5
3497         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3498         atime1=$(stat -c %X $DIR/$tfile)
3499
3500         sleep 5
3501         cancel_lru_locks mdc
3502         cancel_lru_locks osc
3503         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3504         atime2=$(stat -c %X $DIR/$tfile)
3505
3506         do_facet $SINGLEMDS \
3507                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3508
3509         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3510         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3511 }
3512 run_test 39n "check that O_NOATIME is honored"
3513
3514 test_39o() {
3515         TESTDIR=$DIR/$tdir/$tfile
3516         [ -e $TESTDIR ] && rm -rf $TESTDIR
3517         mkdir -p $TESTDIR
3518         cd $TESTDIR
3519         links1=2
3520         ls
3521         mkdir a b
3522         ls
3523         links2=$(stat -c %h .)
3524         [ $(($links1 + 2)) != $links2 ] &&
3525                 error "wrong links count $(($links1 + 2)) != $links2"
3526         rmdir b
3527         links3=$(stat -c %h .)
3528         [ $(($links1 + 1)) != $links3 ] &&
3529                 error "wrong links count $links1 != $links3"
3530         return 0
3531 }
3532 run_test 39o "directory cached attributes updated after create ========"
3533
3534 test_39p() {
3535         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3536         local MDTIDX=1
3537         TESTDIR=$DIR/$tdir/$tfile
3538         [ -e $TESTDIR ] && rm -rf $TESTDIR
3539         test_mkdir -p $TESTDIR
3540         cd $TESTDIR
3541         links1=2
3542         ls
3543         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3544         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3545         ls
3546         links2=$(stat -c %h .)
3547         [ $(($links1 + 2)) != $links2 ] &&
3548                 error "wrong links count $(($links1 + 2)) != $links2"
3549         rmdir remote_dir2
3550         links3=$(stat -c %h .)
3551         [ $(($links1 + 1)) != $links3 ] &&
3552                 error "wrong links count $links1 != $links3"
3553         return 0
3554 }
3555 run_test 39p "remote directory cached attributes updated after create ========"
3556
3557
3558 test_39q() { # LU-8041
3559         local testdir=$DIR/$tdir
3560         mkdir -p $testdir
3561         multiop_bg_pause $testdir D_c || error "multiop failed"
3562         local multipid=$!
3563         cancel_lru_locks mdc
3564         kill -USR1 $multipid
3565         local atime=$(stat -c %X $testdir)
3566         [ "$atime" -ne 0 ] || error "atime is zero"
3567 }
3568 run_test 39q "close won't zero out atime"
3569
3570 test_40() {
3571         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3572         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3573                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3574         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3575                 error "$tfile is not 4096 bytes in size"
3576 }
3577 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3578
3579 test_41() {
3580         # bug 1553
3581         small_write $DIR/f41 18
3582 }
3583 run_test 41 "test small file write + fstat ====================="
3584
3585 count_ost_writes() {
3586         lctl get_param -n osc.*.stats |
3587                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3588                         END { printf("%0.0f", writes) }'
3589 }
3590
3591 # decent default
3592 WRITEBACK_SAVE=500
3593 DIRTY_RATIO_SAVE=40
3594 MAX_DIRTY_RATIO=50
3595 BG_DIRTY_RATIO_SAVE=10
3596 MAX_BG_DIRTY_RATIO=25
3597
3598 start_writeback() {
3599         trap 0
3600         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3601         # dirty_ratio, dirty_background_ratio
3602         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3603                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3604                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3605                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3606         else
3607                 # if file not here, we are a 2.4 kernel
3608                 kill -CONT `pidof kupdated`
3609         fi
3610 }
3611
3612 stop_writeback() {
3613         # setup the trap first, so someone cannot exit the test at the
3614         # exact wrong time and mess up a machine
3615         trap start_writeback EXIT
3616         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3617         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3618                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3619                 sysctl -w vm.dirty_writeback_centisecs=0
3620                 sysctl -w vm.dirty_writeback_centisecs=0
3621                 # save and increase /proc/sys/vm/dirty_ratio
3622                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3623                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3624                 # save and increase /proc/sys/vm/dirty_background_ratio
3625                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3626                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3627         else
3628                 # if file not here, we are a 2.4 kernel
3629                 kill -STOP `pidof kupdated`
3630         fi
3631 }
3632
3633 # ensure that all stripes have some grant before we test client-side cache
3634 setup_test42() {
3635         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3636                 dd if=/dev/zero of=$i bs=4k count=1
3637                 rm $i
3638         done
3639 }
3640
3641 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3642 # file truncation, and file removal.
3643 test_42a() {
3644         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3645         setup_test42
3646         cancel_lru_locks osc
3647         stop_writeback
3648         sync; sleep 1; sync # just to be safe
3649         BEFOREWRITES=`count_ost_writes`
3650         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3651         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3652         AFTERWRITES=`count_ost_writes`
3653         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3654                 error "$BEFOREWRITES < $AFTERWRITES"
3655         start_writeback
3656 }
3657 run_test 42a "ensure that we don't flush on close =============="
3658
3659 test_42b() {
3660         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3661         setup_test42
3662         cancel_lru_locks osc
3663         stop_writeback
3664         sync
3665         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3666         BEFOREWRITES=$(count_ost_writes)
3667         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3668         AFTERWRITES=$(count_ost_writes)
3669         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3670                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3671         fi
3672         BEFOREWRITES=$(count_ost_writes)
3673         sync || error "sync: $?"
3674         AFTERWRITES=$(count_ost_writes)
3675         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3676                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3677         fi
3678         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3679         start_writeback
3680         return 0
3681 }
3682 run_test 42b "test destroy of file with cached dirty data ======"
3683
3684 # if these tests just want to test the effect of truncation,
3685 # they have to be very careful.  consider:
3686 # - the first open gets a {0,EOF}PR lock
3687 # - the first write conflicts and gets a {0, count-1}PW
3688 # - the rest of the writes are under {count,EOF}PW
3689 # - the open for truncate tries to match a {0,EOF}PR
3690 #   for the filesize and cancels the PWs.
3691 # any number of fixes (don't get {0,EOF} on open, match
3692 # composite locks, do smarter file size management) fix
3693 # this, but for now we want these tests to verify that
3694 # the cancellation with truncate intent works, so we
3695 # start the file with a full-file pw lock to match against
3696 # until the truncate.
3697 trunc_test() {
3698         test=$1
3699         file=$DIR/$test
3700         offset=$2
3701         cancel_lru_locks osc
3702         stop_writeback
3703         # prime the file with 0,EOF PW to match
3704         touch $file
3705         $TRUNCATE $file 0
3706         sync; sync
3707         # now the real test..
3708         dd if=/dev/zero of=$file bs=1024 count=100
3709         BEFOREWRITES=`count_ost_writes`
3710         $TRUNCATE $file $offset
3711         cancel_lru_locks osc
3712         AFTERWRITES=`count_ost_writes`
3713         start_writeback
3714 }
3715
3716 test_42c() {
3717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3718         trunc_test 42c 1024
3719         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3720             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3721         rm $file
3722 }
3723 run_test 42c "test partial truncate of file with cached dirty data"
3724
3725 test_42d() {
3726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3727         trunc_test 42d 0
3728         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3729             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3730         rm $file
3731 }
3732 run_test 42d "test complete truncate of file with cached dirty data"
3733
3734 test_42e() { # bug22074
3735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3736         local TDIR=$DIR/${tdir}e
3737         local pagesz=$(page_size)
3738         local pages=16 # hardcoded 16 pages, don't change it.
3739         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3740         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3741         local max_dirty_mb
3742         local warmup_files
3743
3744         test_mkdir -p $DIR/${tdir}e
3745         $SETSTRIPE -c 1 $TDIR
3746         createmany -o $TDIR/f $files
3747
3748         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3749
3750         # we assume that with $OSTCOUNT files, at least one of them will
3751         # be allocated on OST0.
3752         warmup_files=$((OSTCOUNT * max_dirty_mb))
3753         createmany -o $TDIR/w $warmup_files
3754
3755         # write a large amount of data into one file and sync, to get good
3756         # avail_grant number from OST.
3757         for ((i=0; i<$warmup_files; i++)); do
3758                 idx=$($GETSTRIPE -i $TDIR/w$i)
3759                 [ $idx -ne 0 ] && continue
3760                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3761                 break
3762         done
3763         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3764         sync
3765         $LCTL get_param $proc_osc0/cur_dirty_bytes
3766         $LCTL get_param $proc_osc0/cur_grant_bytes
3767
3768         # create as much dirty pages as we can while not to trigger the actual
3769         # RPCs directly. but depends on the env, VFS may trigger flush during this
3770         # period, hopefully we are good.
3771         for ((i=0; i<$warmup_files; i++)); do
3772                 idx=$($GETSTRIPE -i $TDIR/w$i)
3773                 [ $idx -ne 0 ] && continue
3774                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3775         done
3776         $LCTL get_param $proc_osc0/cur_dirty_bytes
3777         $LCTL get_param $proc_osc0/cur_grant_bytes
3778
3779         # perform the real test
3780         $LCTL set_param $proc_osc0/rpc_stats 0
3781         for ((;i<$files; i++)); do
3782                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3783                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3784         done
3785         sync
3786         $LCTL get_param $proc_osc0/rpc_stats
3787
3788         local percent=0
3789         local have_ppr=false
3790         $LCTL get_param $proc_osc0/rpc_stats |
3791                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3792                         # skip lines until we are at the RPC histogram data
3793                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3794                         $have_ppr || continue
3795
3796                         # we only want the percent stat for < 16 pages
3797                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3798
3799                         percent=$((percent + WPCT))
3800                         if [[ $percent -gt 15 ]]; then
3801                                 error "less than 16-pages write RPCs" \
3802                                       "$percent% > 15%"
3803                                 break
3804                         fi
3805                 done
3806         rm -rf $TDIR
3807 }
3808 run_test 42e "verify sub-RPC writes are not done synchronously"
3809
3810 test_43A() { # was test_43
3811         test_mkdir -p $DIR/$tdir
3812         cp -p /bin/ls $DIR/$tdir/$tfile
3813         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3814         pid=$!
3815         # give multiop a chance to open
3816         sleep 1
3817
3818         $DIR/$tdir/$tfile && error || true
3819         kill -USR1 $pid
3820 }
3821 run_test 43A "execution of file opened for write should return -ETXTBSY"
3822
3823 test_43a() {
3824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3825         test_mkdir -p $DIR/$tdir
3826         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3827                         cp -p multiop $DIR/$tdir/multiop
3828         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3829                         return 1
3830         MULTIOP_PID=$!
3831         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3832         kill -USR1 $MULTIOP_PID || return 2
3833         wait $MULTIOP_PID || return 3
3834         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3835 }
3836 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3837
3838 test_43b() {
3839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3840         test_mkdir -p $DIR/$tdir
3841         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3842                         cp -p multiop $DIR/$tdir/multiop
3843         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3844                         return 1
3845         MULTIOP_PID=$!
3846         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3847         kill -USR1 $MULTIOP_PID || return 2
3848         wait $MULTIOP_PID || return 3
3849         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3850 }
3851 run_test 43b "truncate of file being executed should return -ETXTBSY"
3852
3853 test_43c() {
3854         local testdir="$DIR/$tdir"
3855         test_mkdir -p $DIR/$tdir
3856         cp $SHELL $testdir/
3857         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3858                 ( cd $testdir && md5sum -c)
3859 }
3860 run_test 43c "md5sum of copy into lustre========================"
3861
3862 test_44A() { # was test_44
3863         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3864         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3865         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3866 }
3867 run_test 44A "zero length read from a sparse stripe ============="
3868
3869 test_44a() {
3870         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3871                 awk '{ print $2 }')
3872         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3873         [[ $nstripe -gt $OSTCOUNT ]] &&
3874             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3875             return
3876         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3877                 awk '{ print $2 }')
3878         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3879                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3880                         awk '{ print $2 }')
3881         fi
3882
3883         OFFSETS="0 $((stride/2)) $((stride-1))"
3884         for offset in $OFFSETS; do
3885                 for i in $(seq 0 $((nstripe-1))); do
3886                         local GLOBALOFFSETS=""
3887                         # size in Bytes
3888                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3889                         local myfn=$DIR/d44a-$size
3890                         echo "--------writing $myfn at $size"
3891                         ll_sparseness_write $myfn $size ||
3892                                 error "ll_sparseness_write"
3893                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3894                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3895                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3896
3897                         for j in $(seq 0 $((nstripe-1))); do
3898                                 # size in Bytes
3899                                 size=$((((j + $nstripe )*$stride + $offset)))
3900                                 ll_sparseness_write $myfn $size ||
3901                                         error "ll_sparseness_write"
3902                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3903                         done
3904                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3905                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3906                         rm -f $myfn
3907                 done
3908         done
3909 }
3910 run_test 44a "test sparse pwrite ==============================="
3911
3912 dirty_osc_total() {
3913         tot=0
3914         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3915                 tot=$(($tot + $d))
3916         done
3917         echo $tot
3918 }
3919 do_dirty_record() {
3920         before=`dirty_osc_total`
3921         echo executing "\"$*\""
3922         eval $*
3923         after=`dirty_osc_total`
3924         echo before $before, after $after
3925 }
3926 test_45() {
3927         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3928         f="$DIR/f45"
3929         # Obtain grants from OST if it supports it
3930         echo blah > ${f}_grant
3931         stop_writeback
3932         sync
3933         do_dirty_record "echo blah > $f"
3934         [[ $before -eq $after ]] && error "write wasn't cached"
3935         do_dirty_record "> $f"
3936         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3937         do_dirty_record "echo blah > $f"
3938         [[ $before -eq $after ]] && error "write wasn't cached"
3939         do_dirty_record "sync"
3940         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3941         do_dirty_record "echo blah > $f"
3942         [[ $before -eq $after ]] && error "write wasn't cached"
3943         do_dirty_record "cancel_lru_locks osc"
3944         [[ $before -gt $after ]] ||
3945                 error "lock cancellation didn't lower dirty count"
3946         start_writeback
3947 }
3948 run_test 45 "osc io page accounting ============================"
3949
3950 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3951 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3952 # objects offset and an assert hit when an rpc was built with 1023's mapped
3953 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3954 test_46() {
3955         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3956         f="$DIR/f46"
3957         stop_writeback
3958         sync
3959         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3960         sync
3961         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3962         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3963         sync
3964         start_writeback
3965 }
3966 run_test 46 "dirtying a previously written page ================"
3967
3968 # test_47 is removed "Device nodes check" is moved to test_28
3969
3970 test_48a() { # bug 2399
3971         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3972         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3973                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3974                 return
3975         test_mkdir $DIR/$tdir
3976         cd $DIR/$tdir
3977         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3978         test_mkdir $DIR/$tdir || error "recreate directory failed"
3979         touch foo || error "'touch foo' failed after recreating cwd"
3980         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3981         touch .foo || error "'touch .foo' failed after recreating cwd"
3982         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3983         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3984         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3985         cd . || error "'cd .' failed after recreating cwd"
3986         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3987         rmdir . && error "'rmdir .' worked after recreating cwd"
3988         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3989         cd .. || error "'cd ..' failed after recreating cwd"
3990 }
3991 run_test 48a "Access renamed working dir (should return errors)="
3992
3993 test_48b() { # bug 2399
3994         rm -rf $DIR/$tdir
3995         test_mkdir $DIR/$tdir
3996         cd $DIR/$tdir
3997         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3998         touch foo && error "'touch foo' worked after removing cwd"
3999         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4000         touch .foo && error "'touch .foo' worked after removing cwd"
4001         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4002         ls . > /dev/null && error "'ls .' worked after removing cwd"
4003         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4004         test_mkdir . && error "'mkdir .' worked after removing cwd"
4005         rmdir . && error "'rmdir .' worked after removing cwd"
4006         ln -s . foo && error "'ln -s .' worked after removing cwd"
4007         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4008 }
4009 run_test 48b "Access removed working dir (should return errors)="
4010
4011 test_48c() { # bug 2350
4012         #lctl set_param debug=-1
4013         #set -vx
4014         rm -rf $DIR/$tdir
4015         test_mkdir -p $DIR/$tdir/dir
4016         cd $DIR/$tdir/dir
4017         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4018         $TRACE touch foo && error "touch foo worked after removing cwd"
4019         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4020         touch .foo && error "touch .foo worked after removing cwd"
4021         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
4022         $TRACE ls . && error "'ls .' worked after removing cwd"
4023         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4024         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
4025         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4026         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4027         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4028 }
4029 run_test 48c "Access removed working subdir (should return errors)"
4030
4031 test_48d() { # bug 2350
4032         #lctl set_param debug=-1
4033         #set -vx
4034         rm -rf $DIR/$tdir
4035         test_mkdir -p $DIR/$tdir/dir
4036         cd $DIR/$tdir/dir
4037         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4038         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4039         $TRACE touch foo && error "'touch foo' worked after removing parent"
4040         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
4041         touch .foo && error "'touch .foo' worked after removing parent"
4042         test_mkdir .foo && error "mkdir .foo worked after removing parent"
4043         $TRACE ls . && error "'ls .' worked after removing parent"
4044         $TRACE ls .. && error "'ls ..' worked after removing parent"
4045         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4046         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4047         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4048         true
4049 }
4050 run_test 48d "Access removed parent subdir (should return errors)"
4051
4052 test_48e() { # bug 4134
4053         #lctl set_param debug=-1
4054         #set -vx
4055         rm -rf $DIR/$tdir
4056         test_mkdir -p $DIR/$tdir/dir
4057         cd $DIR/$tdir/dir
4058         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4059         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4060         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4061         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4062         # On a buggy kernel addition of "touch foo" after cd .. will
4063         # produce kernel oops in lookup_hash_it
4064         touch ../foo && error "'cd ..' worked after recreate parent"
4065         cd $DIR
4066         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4067 }
4068 run_test 48e "Access to recreated parent subdir (should return errors)"
4069
4070 test_49() { # LU-1030
4071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4072         remote_ost_nodsh && skip "remote OST with nodsh" && return
4073         # get ost1 size - lustre-OST0000
4074         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4075                 awk '{ print $4 }')
4076         # write 800M at maximum
4077         [[ $ost1_size -lt 2 ]] && ost1_size=2
4078         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4079
4080         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4081         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4082         local dd_pid=$!
4083
4084         # change max_pages_per_rpc while writing the file
4085         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4086         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4087         # loop until dd process exits
4088         while ps ax -opid | grep -wq $dd_pid; do
4089                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4090                 sleep $((RANDOM % 5 + 1))
4091         done
4092         # restore original max_pages_per_rpc
4093         $LCTL set_param $osc1_mppc=$orig_mppc
4094         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4095 }
4096 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4097
4098 test_50() {
4099         # bug 1485
4100         test_mkdir $DIR/$tdir
4101         cd $DIR/$tdir
4102         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4103 }
4104 run_test 50 "special situations: /proc symlinks  ==============="
4105
4106 test_51a() {    # was test_51
4107         # bug 1516 - create an empty entry right after ".." then split dir
4108         test_mkdir -c1 $DIR/$tdir
4109         touch $DIR/$tdir/foo
4110         $MCREATE $DIR/$tdir/bar
4111         rm $DIR/$tdir/foo
4112         createmany -m $DIR/$tdir/longfile 201
4113         FNUM=202
4114         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4115                 $MCREATE $DIR/$tdir/longfile$FNUM
4116                 FNUM=$(($FNUM + 1))
4117                 echo -n "+"
4118         done
4119         echo
4120         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4121 }
4122 run_test 51a "special situations: split htree with empty entry =="
4123
4124 cleanup_print_lfs_df () {
4125         trap 0
4126         $LFS df
4127         $LFS df -i
4128 }
4129
4130 test_51b() {
4131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4132         local dir=$DIR/$tdir
4133
4134         local nrdirs=$((65536 + 100))
4135
4136         # cleanup the directory
4137         rm -fr $dir
4138
4139         test_mkdir -p -c1 $dir
4140
4141         $LFS df
4142         $LFS df -i
4143         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4144         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4145         [[ $numfree -lt $nrdirs ]] &&
4146                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4147                 return
4148
4149         # need to check free space for the directories as well
4150         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4151         numfree=$(( blkfree / $(fs_inode_ksize) ))
4152         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4153                 return
4154
4155         trap cleanup_print_lfsdf EXIT
4156
4157         # create files
4158         createmany -d $dir/d $nrdirs ||
4159                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4160
4161         # really created :
4162         nrdirs=$(ls -U $dir | wc -l)
4163
4164         # unlink all but 100 subdirectories, then check it still works
4165         local left=100
4166         local delete=$((nrdirs - left))
4167
4168         $LFS df
4169         $LFS df -i
4170
4171         # for ldiskfs the nlink count should be 1, but this is OSD specific
4172         # and so this is listed for informational purposes only
4173         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4174         unlinkmany -d $dir/d $delete ||
4175                 error "unlink of first $delete subdirs failed"
4176
4177         echo "nlink between: $(stat -c %h $dir)"
4178         local found=$(ls -U $dir | wc -l)
4179         [ $found -ne $left ] &&
4180                 error "can't find subdirs: found only $found, expected $left"
4181
4182         unlinkmany -d $dir/d $delete $left ||
4183                 error "unlink of second $left subdirs failed"
4184         # regardless of whether the backing filesystem tracks nlink accurately
4185         # or not, the nlink count shouldn't be more than "." and ".." here
4186         local after=$(stat -c %h $dir)
4187         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4188                 echo "nlink after: $after"
4189
4190         cleanup_print_lfs_df
4191 }
4192 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4193
4194 test_51d() {
4195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4196         [[ $OSTCOUNT -lt 3 ]] &&
4197                 skip_env "skipping test with few OSTs" && return
4198         test_mkdir -p $DIR/$tdir
4199         createmany -o $DIR/$tdir/t- 1000
4200         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4201         for N in $(seq 0 $((OSTCOUNT - 1))); do
4202                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4203                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4204                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4205                         '($1 == '$N') { objs += 1 } \
4206                         END { printf("%0.0f", objs) }')
4207                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4208         done
4209         unlinkmany $DIR/$tdir/t- 1000
4210
4211         NLAST=0
4212         for N in $(seq 1 $((OSTCOUNT - 1))); do
4213                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4214                         error "OST $N has less objects vs OST $NLAST" \
4215                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4216                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4217                         error "OST $N has less objects vs OST $NLAST" \
4218                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4219
4220                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4221                         error "OST $N has less #0 objects vs OST $NLAST" \
4222                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4223                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4224                         error "OST $N has less #0 objects vs OST $NLAST" \
4225                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4226                 NLAST=$N
4227         done
4228         rm -f $TMP/$tfile
4229 }
4230 run_test 51d "check object distribution"
4231
4232 test_51e() {
4233         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4234                 skip "Only applicable to ldiskfs-based MDTs"
4235                 return
4236         fi
4237
4238         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4239         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4240
4241         touch $DIR/$tdir/d0/foo
4242         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4243                 error "file exceed 65000 nlink limit!"
4244         unlinkmany $DIR/$tdir/d0/f- 65001
4245         return 0
4246 }
4247 run_test 51e "check file nlink limit"
4248
4249 test_52a() {
4250         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4251         test_mkdir -p $DIR/$tdir
4252         touch $DIR/$tdir/foo
4253         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4254         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4255         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4256         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4257         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4258                                         error "link worked"
4259         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4260         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4261         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4262                                                      error "lsattr"
4263         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4264         cp -r $DIR/$tdir $TMP/
4265         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4266 }
4267 run_test 52a "append-only flag test (should return errors)"
4268
4269 test_52b() {
4270         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4271         test_mkdir -p $DIR/$tdir
4272         touch $DIR/$tdir/foo
4273         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4274         cat test > $DIR/$tdir/foo && error "cat test worked"
4275         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4276         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4277         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4278                                         error "link worked"
4279         echo foo >> $DIR/$tdir/foo && error "echo worked"
4280         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4281         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4282         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4283         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4284                                                         error "lsattr"
4285         chattr -i $DIR/$tdir/foo || error "chattr failed"
4286
4287         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4288 }
4289 run_test 52b "immutable flag test (should return errors) ======="
4290
4291 test_53() {
4292         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4293         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4294         remote_ost_nodsh && skip "remote OST with nodsh" && return
4295
4296         local param
4297         local param_seq
4298         local ostname
4299         local mds_last
4300         local mds_last_seq
4301         local ost_last
4302         local ost_last_seq
4303         local ost_last_id
4304         local ostnum
4305         local node
4306         local found=false
4307         local support_last_seq=true
4308
4309         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4310                 support_last_seq=false
4311
4312         # only test MDT0000
4313         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4314         local value
4315         for value in $(do_facet $SINGLEMDS \
4316                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4317                 param=$(echo ${value[0]} | cut -d "=" -f1)
4318                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4319
4320                 if $support_last_seq; then
4321                         param_seq=$(echo $param |
4322                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4323                         mds_last_seq=$(do_facet $SINGLEMDS \
4324                                        $LCTL get_param -n $param_seq)
4325                 fi
4326                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4327
4328                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4329                 node=$(facet_active_host ost$((ostnum+1)))
4330                 param="obdfilter.$ostname.last_id"
4331                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4332                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4333                         ost_last_id=$ost_last
4334
4335                         if $support_last_seq; then
4336                                 ost_last_id=$(echo $ost_last |
4337                                               awk -F':' '{print $2}' |
4338                                               sed -e "s/^0x//g")
4339                                 ost_last_seq=$(echo $ost_last |
4340                                                awk -F':' '{print $1}')
4341                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4342                         fi
4343
4344                         if [[ $ost_last_id != $mds_last ]]; then
4345                                 error "$ost_last_id != $mds_last"
4346                         else
4347                                 found=true
4348                                 break
4349                         fi
4350                 done
4351         done
4352         $found || error "can not match last_seq/last_id for $mdtosc"
4353         return 0
4354 }
4355 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4356
4357 test_54a() {
4358         $SOCKETSERVER $DIR/socket ||
4359                 error "$SOCKETSERVER $DIR/socket failed: $?"
4360         $SOCKETCLIENT $DIR/socket ||
4361                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4362         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4363 }
4364 run_test 54a "unix domain socket test =========================="
4365
4366 test_54b() {
4367         f="$DIR/f54b"
4368         mknod $f c 1 3
4369         chmod 0666 $f
4370         dd if=/dev/zero of=$f bs=$(page_size) count=1
4371 }
4372 run_test 54b "char device works in lustre ======================"
4373
4374 find_loop_dev() {
4375         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4376         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4377         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4378
4379         for i in $(seq 3 7); do
4380                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4381                 LOOPDEV=$LOOPBASE$i
4382                 LOOPNUM=$i
4383                 break
4384         done
4385 }
4386
4387 cleanup_54c() {
4388         local rc=0
4389         loopdev="$DIR/loop54c"
4390
4391         trap 0
4392         $UMOUNT $DIR/$tdir || rc=$?
4393         losetup -d $loopdev || true
4394         losetup -d $LOOPDEV || true
4395         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4396         return $rc
4397 }
4398
4399 test_54c() {
4400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4401         loopdev="$DIR/loop54c"
4402
4403         find_loop_dev
4404         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4405         trap cleanup_54c EXIT
4406         mknod $loopdev b 7 $LOOPNUM
4407         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4408         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4409         losetup $loopdev $DIR/$tfile ||
4410                 error "can't set up $loopdev for $DIR/$tfile"
4411         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4412         test_mkdir -p $DIR/$tdir
4413         mount -t ext2 $loopdev $DIR/$tdir ||
4414                 error "error mounting $loopdev on $DIR/$tdir"
4415         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4416                 error "dd write"
4417         df $DIR/$tdir
4418         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4419                 error "dd read"
4420         cleanup_54c
4421 }
4422 run_test 54c "block device works in lustre ====================="
4423
4424 test_54d() {
4425         f="$DIR/f54d"
4426         string="aaaaaa"
4427         mknod $f p
4428         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4429 }
4430 run_test 54d "fifo device works in lustre ======================"
4431
4432 test_54e() {
4433         f="$DIR/f54e"
4434         string="aaaaaa"
4435         cp -aL /dev/console $f
4436         echo $string > $f || error "echo $string to $f failed"
4437 }
4438 run_test 54e "console/tty device works in lustre ======================"
4439
4440 #The test_55 used to be iopen test and it was removed by bz#24037.
4441 #run_test 55 "check iopen_connect_dentry() ======================"
4442
4443 test_56a() {    # was test_56
4444         rm -rf $DIR/$tdir
4445         $SETSTRIPE -d $DIR
4446         test_mkdir -p $DIR/$tdir/dir
4447         NUMFILES=3
4448         NUMFILESx2=$(($NUMFILES * 2))
4449         for i in $(seq 1 $NUMFILES); do
4450                 touch $DIR/$tdir/file$i
4451                 touch $DIR/$tdir/dir/file$i
4452         done
4453
4454         # test lfs getstripe with --recursive
4455         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4456         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4457                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4458         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4459         [[ $FILENUM -eq $NUMFILES ]] ||
4460                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4461         echo "$GETSTRIPE --recursive passed."
4462
4463         # test lfs getstripe with file instead of dir
4464         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4465         [[ $FILENUM -eq 1 ]] ||
4466                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4467         echo "$GETSTRIPE file1 passed."
4468
4469         #test lfs getstripe with --verbose
4470         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4471                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4472                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4473         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4474                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4475
4476         #test lfs getstripe with -v prints lmm_fid
4477         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4478                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4479         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4480                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4481         echo "$GETSTRIPE --verbose passed."
4482
4483         #check for FID information
4484         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4485         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4486                        awk '/lmm_fid: / { print $2 }')
4487         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4488         [ "$fid1" != "$fid2" ] &&
4489                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4490         [ "$fid1" != "$fid3" ] &&
4491                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4492         echo "$GETSTRIPE --fid passed."
4493
4494         #test lfs getstripe with --obd
4495         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4496                 grep -q "unknown obduuid" ||
4497                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4498
4499         [[ $OSTCOUNT -lt 2 ]] &&
4500                 skip_env "skipping other $GETSTRIPE --obd test" && return
4501
4502         OSTIDX=1
4503         OBDUUID=$(ostuuid_from_index $OSTIDX)
4504         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4505         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4506         [[ $FOUND -eq $FILENUM ]] ||
4507                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4508         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4509                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4510                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4511                 error "$GETSTRIPE --obd: should not show file on other obd"
4512         echo "$GETSTRIPE --obd passed"
4513 }
4514 run_test 56a "check $GETSTRIPE"
4515
4516 test_56b() {
4517         test_mkdir $DIR/$tdir
4518         NUMDIRS=3
4519         for i in $(seq 1 $NUMDIRS); do
4520                 test_mkdir $DIR/$tdir/dir$i
4521         done
4522
4523         # test lfs getdirstripe default mode is non-recursion, which is
4524         # different from lfs getstripe
4525         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4526         [[ $dircnt -eq 1 ]] ||
4527                 error "$LFS getdirstripe: found $dircnt, not 1"
4528         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4529                 grep -c lmv_stripe_count)
4530         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4531                 error "$LFS getdirstripe --recursive: found $dircnt, \
4532                         not $((NUMDIRS + 1))"
4533 }
4534 run_test 56b "check $LFS getdirstripe"
4535
4536 NUMFILES=3
4537 NUMDIRS=3
4538 setup_56() {
4539         local LOCAL_NUMFILES="$1"
4540         local LOCAL_NUMDIRS="$2"
4541         local MKDIR_PARAMS="$3"
4542         local DIR_STRIPE_PARAMS="$4"
4543
4544         if [ ! -d "$TDIR" ] ; then
4545                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4546                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4547                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4548                         touch $TDIR/file$i
4549                 done
4550                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4551                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4552                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4553                                 touch $TDIR/dir$i/file$j
4554                         done
4555                 done
4556         fi
4557 }
4558
4559 setup_56_special() {
4560         LOCAL_NUMFILES=$1
4561         LOCAL_NUMDIRS=$2
4562         setup_56 $1 $2
4563         if [ ! -e "$TDIR/loop1b" ] ; then
4564                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4565                         mknod $TDIR/loop${i}b b 7 $i
4566                         mknod $TDIR/null${i}c c 1 3
4567                         ln -s $TDIR/file1 $TDIR/link${i}l
4568                 done
4569                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4570                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4571                         mknod $TDIR/dir$i/null${i}c c 1 3
4572                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4573                 done
4574         fi
4575 }
4576
4577 test_56g() {
4578         $SETSTRIPE -d $DIR
4579
4580         TDIR=$DIR/${tdir}g
4581         setup_56 $NUMFILES $NUMDIRS
4582
4583         EXPECTED=$(($NUMDIRS + 2))
4584         # test lfs find with -name
4585         for i in $(seq 1 $NUMFILES) ; do
4586                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4587                 [ $NUMS -eq $EXPECTED ] ||
4588                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4589                               "found $NUMS, expected $EXPECTED"
4590         done
4591 }
4592 run_test 56g "check lfs find -name ============================="
4593
4594 test_56h() {
4595         $SETSTRIPE -d $DIR
4596
4597         TDIR=$DIR/${tdir}g
4598         setup_56 $NUMFILES $NUMDIRS
4599
4600         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4601         # test lfs find with ! -name
4602         for i in $(seq 1 $NUMFILES) ; do
4603                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4604                 [ $NUMS -eq $EXPECTED ] ||
4605                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4606                               "found $NUMS, expected $EXPECTED"
4607         done
4608 }
4609 run_test 56h "check lfs find ! -name ============================="
4610
4611 test_56i() {
4612        tdir=${tdir}i
4613        test_mkdir -p $DIR/$tdir
4614        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4615        CMD="$LFIND -ost $UUID $DIR/$tdir"
4616        OUT=$($CMD)
4617        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4618 }
4619 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4620
4621 test_56j() {
4622         TDIR=$DIR/${tdir}g
4623         setup_56_special $NUMFILES $NUMDIRS
4624
4625         EXPECTED=$((NUMDIRS + 1))
4626         CMD="$LFIND -type d $TDIR"
4627         NUMS=$($CMD | wc -l)
4628         [ $NUMS -eq $EXPECTED ] ||
4629                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4630 }
4631 run_test 56j "check lfs find -type d ============================="
4632
4633 test_56k() {
4634         TDIR=$DIR/${tdir}g
4635         setup_56_special $NUMFILES $NUMDIRS
4636
4637         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4638         CMD="$LFIND -type f $TDIR"
4639         NUMS=$($CMD | wc -l)
4640         [ $NUMS -eq $EXPECTED ] ||
4641                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4642 }
4643 run_test 56k "check lfs find -type f ============================="
4644
4645 test_56l() {
4646         TDIR=$DIR/${tdir}g
4647         setup_56_special $NUMFILES $NUMDIRS
4648
4649         EXPECTED=$((NUMDIRS + NUMFILES))
4650         CMD="$LFIND -type b $TDIR"
4651         NUMS=$($CMD | wc -l)
4652         [ $NUMS -eq $EXPECTED ] ||
4653                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4654 }
4655 run_test 56l "check lfs find -type b ============================="
4656
4657 test_56m() {
4658         TDIR=$DIR/${tdir}g
4659         setup_56_special $NUMFILES $NUMDIRS
4660
4661         EXPECTED=$((NUMDIRS + NUMFILES))
4662         CMD="$LFIND -type c $TDIR"
4663         NUMS=$($CMD | wc -l)
4664         [ $NUMS -eq $EXPECTED ] ||
4665                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4666 }
4667 run_test 56m "check lfs find -type c ============================="
4668
4669 test_56n() {
4670         TDIR=$DIR/${tdir}g
4671         setup_56_special $NUMFILES $NUMDIRS
4672
4673         EXPECTED=$((NUMDIRS + NUMFILES))
4674         CMD="$LFIND -type l $TDIR"
4675         NUMS=$($CMD | wc -l)
4676         [ $NUMS -eq $EXPECTED ] ||
4677                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4678 }
4679 run_test 56n "check lfs find -type l ============================="
4680
4681 test_56o() {
4682         TDIR=$DIR/${tdir}o
4683         setup_56 $NUMFILES $NUMDIRS
4684         utime $TDIR/file1 > /dev/null || error "utime (1)"
4685         utime $TDIR/file2 > /dev/null || error "utime (2)"
4686         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4687         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4688         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4689         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4690
4691         EXPECTED=4
4692         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4693         [ $NUMS -eq $EXPECTED ] || \
4694                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4695
4696         EXPECTED=12
4697         CMD="$LFIND -mtime 0 $TDIR"
4698         NUMS=$($CMD | wc -l)
4699         [ $NUMS -eq $EXPECTED ] ||
4700                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4701 }
4702 run_test 56o "check lfs find -mtime for old files =========================="
4703
4704 test_56p() {
4705         [ $RUNAS_ID -eq $UID ] &&
4706                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4707
4708         TDIR=$DIR/${tdir}p
4709         setup_56 $NUMFILES $NUMDIRS
4710
4711         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4712         EXPECTED=$NUMFILES
4713         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4714         NUMS=$($CMD | wc -l)
4715         [ $NUMS -eq $EXPECTED ] || \
4716                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4717
4718         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4719         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4720         NUMS=$($CMD | wc -l)
4721         [ $NUMS -eq $EXPECTED ] || \
4722                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4723 }
4724 run_test 56p "check lfs find -uid and ! -uid ==============================="
4725
4726 test_56q() {
4727         [ $RUNAS_ID -eq $UID ] &&
4728                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4729
4730         TDIR=$DIR/${tdir}q
4731         setup_56 $NUMFILES $NUMDIRS
4732
4733         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4734
4735         EXPECTED=$NUMFILES
4736         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4737         NUMS=$($CMD | wc -l)
4738         [ $NUMS -eq $EXPECTED ] ||
4739                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4740
4741         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4742         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4743         NUMS=$($CMD | wc -l)
4744         [ $NUMS -eq $EXPECTED ] ||
4745                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4746 }
4747 run_test 56q "check lfs find -gid and ! -gid ==============================="
4748
4749 test_56r() {
4750         TDIR=$DIR/${tdir}r
4751         setup_56 $NUMFILES $NUMDIRS
4752
4753         EXPECTED=12
4754         CMD="$LFIND -size 0 -type f $TDIR"
4755         NUMS=$($CMD | wc -l)
4756         [ $NUMS -eq $EXPECTED ] ||
4757                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4758         EXPECTED=0
4759         CMD="$LFIND ! -size 0 -type f $TDIR"
4760         NUMS=$($CMD | wc -l)
4761         [ $NUMS -eq $EXPECTED ] ||
4762                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4763         echo "test" > $TDIR/$tfile
4764         echo "test2" > $TDIR/$tfile.2 && sync
4765         EXPECTED=1
4766         CMD="$LFIND -size 5 -type f $TDIR"
4767         NUMS=$($CMD | wc -l)
4768         [ $NUMS -eq $EXPECTED ] ||
4769                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4770         EXPECTED=1
4771         CMD="$LFIND -size +5 -type f $TDIR"
4772         NUMS=$($CMD | wc -l)
4773         [ $NUMS -eq $EXPECTED ] ||
4774                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4775         EXPECTED=2
4776         CMD="$LFIND -size +0 -type f $TDIR"
4777         NUMS=$($CMD | wc -l)
4778         [ $NUMS -eq $EXPECTED ] ||
4779                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4780         EXPECTED=2
4781         CMD="$LFIND ! -size -5 -type f $TDIR"
4782         NUMS=$($CMD | wc -l)
4783         [ $NUMS -eq $EXPECTED ] ||
4784                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4785         EXPECTED=12
4786         CMD="$LFIND -size -5 -type f $TDIR"
4787         NUMS=$($CMD | wc -l)
4788         [ $NUMS -eq $EXPECTED ] ||
4789                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4790 }
4791 run_test 56r "check lfs find -size works =========================="
4792
4793 test_56s() { # LU-611
4794         TDIR=$DIR/${tdir}s
4795         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4796
4797         if [[ $OSTCOUNT -gt 1 ]]; then
4798                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4799                 ONESTRIPE=4
4800                 EXTRA=4
4801         else
4802                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4803                 EXTRA=0
4804         fi
4805
4806         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4807         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4808         NUMS=$($CMD | wc -l)
4809         [ $NUMS -eq $EXPECTED ] || {
4810                 $GETSTRIPE -R $TDIR
4811                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4812         }
4813
4814         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4815         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4816         NUMS=$($CMD | wc -l)
4817         [ $NUMS -eq $EXPECTED ] || {
4818                 $GETSTRIPE -R $TDIR
4819                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4820         }
4821
4822         EXPECTED=$ONESTRIPE
4823         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4824         NUMS=$($CMD | wc -l)
4825         [ $NUMS -eq $EXPECTED ] || {
4826                 $GETSTRIPE -R $TDIR
4827                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4828         }
4829
4830         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4831         NUMS=$($CMD | wc -l)
4832         [ $NUMS -eq $EXPECTED ] || {
4833                 $GETSTRIPE -R $TDIR
4834                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4835         }
4836
4837         EXPECTED=0
4838         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4839         NUMS=$($CMD | wc -l)
4840         [ $NUMS -eq $EXPECTED ] || {
4841                 $GETSTRIPE -R $TDIR
4842                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4843         }
4844 }
4845 run_test 56s "check lfs find -stripe-count works"
4846
4847 test_56t() { # LU-611
4848         TDIR=$DIR/${tdir}t
4849         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4850
4851         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4852
4853         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4854         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4855         NUMS=$($CMD | wc -l)
4856         [ $NUMS -eq $EXPECTED ] ||
4857                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4858
4859         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4860         NUMS=$($CMD | wc -l)
4861         [ $NUMS -eq $EXPECTED ] ||
4862                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4863
4864         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4865         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4866         NUMS=$($CMD | wc -l)
4867         [ $NUMS -eq $EXPECTED ] ||
4868                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4869
4870         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4871         NUMS=$($CMD | wc -l)
4872         [ $NUMS -eq $EXPECTED ] ||
4873                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4874
4875         EXPECTED=4
4876         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4877         NUMS=$($CMD | wc -l)
4878         [ $NUMS -eq $EXPECTED ] ||
4879                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4880
4881         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4882         NUMS=$($CMD | wc -l)
4883         [ $NUMS -eq $EXPECTED ] ||
4884                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4885
4886         EXPECTED=0
4887         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4888         NUMS=$($CMD | wc -l)
4889         [ $NUMS -eq $EXPECTED ] ||
4890                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4891 }
4892 run_test 56t "check lfs find -stripe-size works"
4893
4894 test_56u() { # LU-611
4895         TDIR=$DIR/${tdir}u
4896         setup_56 $NUMFILES $NUMDIRS "-i 0"
4897
4898         if [[ $OSTCOUNT -gt 1 ]]; then
4899                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4900                 ONESTRIPE=4
4901         else
4902                 ONESTRIPE=0
4903         fi
4904
4905         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4906         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4907         NUMS=$($CMD | wc -l)
4908         [ $NUMS -eq $EXPECTED ] ||
4909                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4910
4911         EXPECTED=$ONESTRIPE
4912         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4913         NUMS=$($CMD | wc -l)
4914         [ $NUMS -eq $EXPECTED ] ||
4915                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4916
4917         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4918         NUMS=$($CMD | wc -l)
4919         [ $NUMS -eq $EXPECTED ] ||
4920                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4921
4922         EXPECTED=0
4923         # This should produce an error and not return any files
4924         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4925         NUMS=$($CMD 2>/dev/null | wc -l)
4926         [ $NUMS -eq $EXPECTED ] ||
4927                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4928
4929         if [[ $OSTCOUNT -gt 1 ]]; then
4930                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4931                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4932                 NUMS=$($CMD | wc -l)
4933                 [ $NUMS -eq $EXPECTED ] ||
4934                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4935         fi
4936 }
4937 run_test 56u "check lfs find -stripe-index works"
4938
4939 test_56v() {
4940     local MDT_IDX=0
4941
4942     TDIR=$DIR/${tdir}v
4943     rm -rf $TDIR
4944     setup_56 $NUMFILES $NUMDIRS
4945
4946     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4947     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4948
4949     for file in $($LFIND -mdt $UUID $TDIR); do
4950         file_mdt_idx=$($GETSTRIPE -M $file)
4951         [ $file_mdt_idx -eq $MDT_IDX ] ||
4952             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4953     done
4954 }
4955 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4956
4957 test_56w() {
4958         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4959                 return
4960         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4961         TDIR=$DIR/${tdir}w
4962
4963     rm -rf $TDIR || error "remove $TDIR failed"
4964     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4965
4966     local stripe_size
4967     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4968         error "$GETSTRIPE -S -d $TDIR failed"
4969     stripe_size=${stripe_size%% *}
4970
4971     local file_size=$((stripe_size * OSTCOUNT))
4972     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4973     local required_space=$((file_num * file_size))
4974
4975     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
4976                         head -n1)
4977     [[ $free_space -le $((required_space / 1024)) ]] &&
4978         skip_env "need at least $required_space bytes free space," \
4979                  "have $free_space kbytes" && return
4980
4981     local dd_bs=65536
4982     local dd_count=$((file_size / dd_bs))
4983
4984     # write data into the files
4985     local i
4986     local j
4987     local file
4988     for i in $(seq 1 $NUMFILES); do
4989         file=$TDIR/file$i
4990         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4991             error "write data into $file failed"
4992     done
4993     for i in $(seq 1 $NUMDIRS); do
4994         for j in $(seq 1 $NUMFILES); do
4995             file=$TDIR/dir$i/file$j
4996             yes | dd bs=$dd_bs count=$dd_count of=$file \
4997                 >/dev/null 2>&1 ||
4998                 error "write data into $file failed"
4999         done
5000     done
5001
5002     local expected=-1
5003     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5004
5005     # lfs_migrate file
5006     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5007     echo "$cmd"
5008     eval $cmd || error "$cmd failed"
5009
5010     check_stripe_count $TDIR/file1 $expected
5011
5012         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5013         then
5014                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5015                 # OST 1 if it is on OST 0. This file is small enough to
5016                 # be on only one stripe.
5017                 file=$TDIR/migr_1_ost
5018                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5019                         error "write data into $file failed"
5020                 local obdidx=$($LFS getstripe -i $file)
5021                 local oldmd5=$(md5sum $file)
5022                 local newobdidx=0
5023                 [[ $obdidx -eq 0 ]] && newobdidx=1
5024                 cmd="$LFS migrate -i $newobdidx $file"
5025                 echo $cmd
5026                 eval $cmd || error "$cmd failed"
5027                 local realobdix=$($LFS getstripe -i $file)
5028                 local newmd5=$(md5sum $file)
5029                 [[ $newobdidx -ne $realobdix ]] &&
5030                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5031                 [[ "$oldmd5" != "$newmd5" ]] &&
5032                         error "md5sum differ: $oldmd5, $newmd5"
5033         fi
5034
5035     # lfs_migrate dir
5036     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5037     echo "$cmd"
5038     eval $cmd || error "$cmd failed"
5039
5040     for j in $(seq 1 $NUMFILES); do
5041         check_stripe_count $TDIR/dir1/file$j $expected
5042     done
5043
5044     # lfs_migrate works with lfs find
5045     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5046          $LFS_MIGRATE -y -c $expected"
5047     echo "$cmd"
5048     eval $cmd || error "$cmd failed"
5049
5050     for i in $(seq 2 $NUMFILES); do
5051         check_stripe_count $TDIR/file$i $expected
5052     done
5053     for i in $(seq 2 $NUMDIRS); do
5054         for j in $(seq 1 $NUMFILES); do
5055             check_stripe_count $TDIR/dir$i/file$j $expected
5056         done
5057     done
5058 }
5059 run_test 56w "check lfs_migrate -c stripe_count works"
5060
5061 test_56x() {
5062         check_swap_layouts_support && return 0
5063         [[ $OSTCOUNT -lt 2 ]] &&
5064                 skip_env "need 2 OST, skipping test" && return
5065
5066         local dir0=$DIR/$tdir/$testnum
5067         test_mkdir -p $dir0 || error "creating dir $dir0"
5068
5069         local ref1=/etc/passwd
5070         local file1=$dir0/file1
5071
5072         $SETSTRIPE -c 2 $file1
5073         cp $ref1 $file1
5074         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5075         stripe=$($GETSTRIPE -c $file1)
5076         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5077         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5078
5079         # clean up
5080         rm -f $file1
5081 }
5082 run_test 56x "lfs migration support"
5083
5084 test_56xa() {
5085         check_swap_layouts_support && return 0
5086         [[ $OSTCOUNT -lt 2 ]] &&
5087                 skip_env "need 2 OST, skipping test" && return
5088
5089         local dir0=$DIR/$tdir/$testnum
5090         test_mkdir -p $dir0 || error "creating dir $dir0"
5091
5092         local ref1=/etc/passwd
5093         local file1=$dir0/file1
5094
5095         $SETSTRIPE -c 2 $file1
5096         cp $ref1 $file1
5097         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5098         local stripe=$($GETSTRIPE -c $file1)
5099         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5100         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5101
5102         # clean up
5103         rm -f $file1
5104 }
5105 run_test 56xa "lfs migration --block support"
5106
5107 test_56y() {
5108         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5109                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5110                 return
5111
5112         local res=""
5113         local dir0=$DIR/$tdir/$testnum
5114         test_mkdir -p $dir0 || error "creating dir $dir0"
5115         local f1=$dir0/file1
5116         local f2=$dir0/file2
5117
5118         touch $f1 || error "creating std file $f1"
5119         $MULTIOP $f2 H2c || error "creating released file $f2"
5120
5121         # a directory can be raid0, so ask only for files
5122         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5123         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5124
5125         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5126         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5127
5128         # only files can be released, so no need to force file search
5129         res=$($LFIND $dir0 -L released)
5130         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5131
5132         res=$($LFIND $dir0 \! -L released)
5133         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5134
5135 }
5136 run_test 56y "lfs find -L raid0|released"
5137
5138 test_56z() { # LU-4824
5139         # This checks to make sure 'lfs find' continues after errors
5140         # There are two classes of errors that should be caught:
5141         # - If multiple paths are provided, all should be searched even if one
5142         #   errors out
5143         # - If errors are encountered during the search, it should not terminate
5144         #   early
5145         local i
5146         test_mkdir $DIR/$tdir
5147         for i in d{0..9}; do
5148                 test_mkdir $DIR/$tdir/$i
5149         done
5150         touch $DIR/$tdir/d{0..9}/$tfile
5151         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5152                 error "$LFS find did not return an error"
5153         # Make a directory unsearchable. This should NOT be the last entry in
5154         # directory order.  Arbitrarily pick the 6th entry
5155         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5156         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5157         # The user should be able to see 10 directories and 9 files
5158         [ $count == 19 ] || error "$LFS find did not continue after error"
5159 }
5160 run_test 56z "lfs find should continue after an error"
5161
5162 test_56aa() { # LU-5937
5163         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5164
5165         mkdir $DIR/$tdir
5166         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5167
5168         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5169         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5170
5171         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5172 }
5173 run_test 56aa "lfs find --size under striped dir"
5174
5175 test_57a() {
5176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5177         # note test will not do anything if MDS is not local
5178         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5179                 skip "Only applicable to ldiskfs-based MDTs"
5180                 return
5181         fi
5182
5183         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5184         local MNTDEV="osd*.*MDT*.mntdev"
5185         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5186         [ -z "$DEV" ] && error "can't access $MNTDEV"
5187         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5188                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5189                         error "can't access $DEV"
5190                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5191                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5192                 rm $TMP/t57a.dump
5193         done
5194 }
5195 run_test 57a "verify MDS filesystem created with large inodes =="
5196
5197 test_57b() {
5198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5199         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5200                 skip "Only applicable to ldiskfs-based MDTs"
5201                 return
5202         fi
5203
5204         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5205         local dir=$DIR/$tdir
5206
5207         local FILECOUNT=100
5208         local FILE1=$dir/f1
5209         local FILEN=$dir/f$FILECOUNT
5210
5211         rm -rf $dir || error "removing $dir"
5212         test_mkdir -p -c1 $dir || error "creating $dir"
5213         local mdtidx=$($LFS getstripe -M $dir)
5214         local mdtname=MDT$(printf %04x $mdtidx)
5215         local facet=mds$((mdtidx + 1))
5216
5217         echo "mcreating $FILECOUNT files"
5218         createmany -m $dir/f 1 $FILECOUNT || \
5219                 error "creating files in $dir"
5220
5221         # verify that files do not have EAs yet
5222         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5223         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5224
5225         sync
5226         sleep 1
5227         df $dir  #make sure we get new statfs data
5228         local MDSFREE=$(do_facet $facet \
5229                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5230         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5231         echo "opening files to create objects/EAs"
5232         local FILE
5233         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5234                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5235         done
5236
5237         # verify that files have EAs now
5238         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5239         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5240
5241         sleep 1  #make sure we get new statfs data
5242         df $dir
5243         local MDSFREE2=$(do_facet $facet \
5244                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5245         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5246         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5247                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5248                         error "MDC before $MDCFREE != after $MDCFREE2"
5249                 else
5250                         echo "MDC before $MDCFREE != after $MDCFREE2"
5251                         echo "unable to confirm if MDS has large inodes"
5252                 fi
5253         fi
5254         rm -rf $dir
5255 }
5256 run_test 57b "default LOV EAs are stored inside large inodes ==="
5257
5258 test_58() {
5259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5260         [ -z "$(which wiretest 2>/dev/null)" ] &&
5261                         skip_env "could not find wiretest" && return
5262         wiretest
5263 }
5264 run_test 58 "verify cross-platform wire constants =============="
5265
5266 test_59() {
5267         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5268         echo "touch 130 files"
5269         createmany -o $DIR/f59- 130
5270         echo "rm 130 files"
5271         unlinkmany $DIR/f59- 130
5272         sync
5273         # wait for commitment of removal
5274         wait_delete_completed
5275 }
5276 run_test 59 "verify cancellation of llog records async ========="
5277
5278 TEST60_HEAD="test_60 run $RANDOM"
5279 test_60a() {
5280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5281         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5282         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5283                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5284                         skip_env "missing subtest run-llog.sh" && return
5285
5286         log "$TEST60_HEAD - from kernel mode"
5287         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5288         do_facet mgs sh run-llog.sh
5289         do_facet mgs $LCTL dk > $TMP/$tfile
5290
5291         # LU-6388: test llog_reader
5292         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5293         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5294         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5295                         skip_env "missing llog_reader" && return
5296         local fstype=$(facet_fstype mgs)
5297         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5298                 skip_env "Only for ldiskfs or zfs type mgs" && return
5299
5300         local mntpt=$(facet_mntpt mgs)
5301         local mgsdev=$(mgsdevname 1)
5302         local fid_list
5303         local fid
5304         local rec_list
5305         local rec
5306         local rec_type
5307         local obj_file
5308         local path
5309         local seq
5310         local oid
5311         local pass=true
5312
5313         #get fid and record list
5314         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5315                 tail -n 4))
5316         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5317                 tail -n 4))
5318         #remount mgs as ldiskfs or zfs type
5319         stop mgs || error "stop mgs failed"
5320         mount_fstype mgs || error "remount mgs failed"
5321         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5322                 fid=${fid_list[i]}
5323                 rec=${rec_list[i]}
5324                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5325                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5326                 oid=$((16#$oid))
5327
5328                 case $fstype in
5329                         ldiskfs )
5330                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5331                         zfs )
5332                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5333                 esac
5334                 echo "obj_file is $obj_file"
5335                 do_facet mgs $llog_reader $obj_file
5336
5337                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5338                         awk '{ print $3 }' | sed -e "s/^type=//g")
5339                 if [ $rec_type != $rec ]; then
5340                         echo "FAILED test_60a wrong record type $rec_type," \
5341                               "should be $rec"
5342                         pass=false
5343                         break
5344                 fi
5345
5346                 #check obj path if record type is LLOG_LOGID_MAGIC
5347                 if [ "$rec" == "1064553b" ]; then
5348                         path=$(do_facet mgs $llog_reader $obj_file |
5349                                 grep "path=" | awk '{ print $NF }' |
5350                                 sed -e "s/^path=//g")
5351                         if [ $obj_file != $mntpt/$path ]; then
5352                                 echo "FAILED test_60a wrong obj path" \
5353                                       "$montpt/$path, should be $obj_file"
5354                                 pass=false
5355                                 break
5356                         fi
5357                 fi
5358         done
5359         rm -f $TMP/$tfile
5360         #restart mgs before "error", otherwise it will block the next test
5361         stop mgs || error "stop mgs failed"
5362         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5363         $pass || error "test failed, see FAILED test_60a messages for specifics"
5364 }
5365 run_test 60a "llog_test run from kernel module and test llog_reader =========="
5366
5367 test_60b() { # bug 6411
5368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5369         dmesg > $DIR/$tfile
5370         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5371                                 /llog.test/ {
5372                                         if (marker)
5373                                                 from_marker++
5374                                         from_begin++
5375                                 }
5376                                 END {
5377                                         if (marker)
5378                                                 print from_marker
5379                                         else
5380                                                 print from_begin
5381                                 }")
5382         [[ $LLOG_COUNT -gt 100 ]] &&
5383                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5384 }
5385 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5386
5387 test_60c() {
5388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5389         echo "create 5000 files"
5390         createmany -o $DIR/f60c- 5000
5391 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5392         lctl set_param fail_loc=0x80000137
5393         unlinkmany $DIR/f60c- 5000
5394         lctl set_param fail_loc=0
5395 }
5396 run_test 60c "unlink file when mds full"
5397
5398 test_60d() {
5399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5400         SAVEPRINTK=$(lctl get_param -n printk)
5401
5402         # verify "lctl mark" is even working"
5403         MESSAGE="test message ID $RANDOM $$"
5404         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5405         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5406
5407         lctl set_param printk=0 || error "set lnet.printk failed"
5408         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5409         MESSAGE="new test message ID $RANDOM $$"
5410         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5411         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5412         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5413
5414         lctl set_param -n printk="$SAVEPRINTK"
5415 }
5416 run_test 60d "test printk console message masking"
5417
5418 test_60e() {
5419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5420         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5421         touch $DIR/$tfile
5422 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5423         do_facet mds1 lctl set_param fail_loc=0x15b
5424         rm $DIR/$tfile
5425 }
5426 run_test 60e "no space while new llog is being created"
5427
5428 test_61() {
5429         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5430         f="$DIR/f61"
5431         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5432         cancel_lru_locks osc
5433         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5434         sync
5435 }
5436 run_test 61 "mmap() writes don't make sync hang ================"
5437
5438 # bug 2330 - insufficient obd_match error checking causes LBUG
5439 test_62() {
5440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5441         f="$DIR/f62"
5442         echo foo > $f
5443         cancel_lru_locks osc
5444         lctl set_param fail_loc=0x405
5445         cat $f && error "cat succeeded, expect -EIO"
5446         lctl set_param fail_loc=0
5447 }
5448 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5449 # match every page all of the time.
5450 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5451
5452 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5453 # Though this test is irrelevant anymore, it helped to reveal some
5454 # other grant bugs (LU-4482), let's keep it.
5455 test_63a() {   # was test_63
5456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5457         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5458         for i in `seq 10` ; do
5459                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5460                 sleep 5
5461                 kill $!
5462                 sleep 1
5463         done
5464
5465         rm -f $DIR/f63 || true
5466 }
5467 run_test 63a "Verify oig_wait interruption does not crash ======="
5468
5469 # bug 2248 - async write errors didn't return to application on sync
5470 # bug 3677 - async write errors left page locked
5471 test_63b() {
5472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5473         debugsave
5474         lctl set_param debug=-1
5475
5476         # ensure we have a grant to do async writes
5477         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5478         rm $DIR/$tfile
5479
5480         sync    # sync lest earlier test intercept the fail_loc
5481
5482         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5483         lctl set_param fail_loc=0x80000406
5484         $MULTIOP $DIR/$tfile Owy && \
5485                 error "sync didn't return ENOMEM"
5486         sync; sleep 2; sync     # do a real sync this time to flush page
5487         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5488                 error "locked page left in cache after async error" || true
5489         debugrestore
5490 }
5491 run_test 63b "async write errors should be returned to fsync ==="
5492
5493 test_64a () {
5494         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5495         df $DIR
5496         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5497 }
5498 run_test 64a "verify filter grant calculations (in kernel) ====="
5499
5500 test_64b () {
5501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5502         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5503 }
5504 run_test 64b "check out-of-space detection on client ==========="
5505
5506 test_64c() {
5507         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5508 }
5509 run_test 64c "verify grant shrink ========================------"
5510
5511 # bug 1414 - set/get directories' stripe info
5512 test_65a() {
5513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5514         test_mkdir -p $DIR/$tdir
5515         touch $DIR/$tdir/f1
5516         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5517 }
5518 run_test 65a "directory with no stripe info ===================="
5519
5520 test_65b() {
5521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5522         test_mkdir -p $DIR/$tdir
5523         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5524
5525         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5526                                                 error "setstripe"
5527         touch $DIR/$tdir/f2
5528         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5529 }
5530 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5531
5532 test_65c() {
5533         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5534         if [[ $OSTCOUNT -gt 1 ]]; then
5535                 test_mkdir -p $DIR/$tdir
5536                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5537
5538                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5539                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5540                 touch $DIR/$tdir/f3
5541                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5542         fi
5543 }
5544 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5545
5546 test_65d() {
5547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5548         test_mkdir -p $DIR/$tdir
5549         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5550         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5551
5552         if [[ $STRIPECOUNT -le 0 ]]; then
5553                 sc=1
5554         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5555 #LOV_MAX_STRIPE_COUNT is 2000
5556                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5557         else
5558                 sc=$(($STRIPECOUNT - 1))
5559         fi
5560         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5561         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5562         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5563                 error "lverify failed"
5564 }
5565 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5566
5567 test_65e() {
5568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5569         test_mkdir -p $DIR/$tdir
5570
5571         $SETSTRIPE $DIR/$tdir || error "setstripe"
5572         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5573                                         error "no stripe info failed"
5574         touch $DIR/$tdir/f6
5575         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5576 }
5577 run_test 65e "directory setstripe defaults ======================="
5578
5579 test_65f() {
5580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5581         test_mkdir -p $DIR/${tdir}f
5582         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5583 }
5584 run_test 65f "dir setstripe permission (should return error) ==="
5585
5586 test_65g() {
5587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5588         test_mkdir -p $DIR/$tdir
5589         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5590
5591         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5592                                                         error "setstripe"
5593         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5594         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5595                 error "delete default stripe failed"
5596 }
5597 run_test 65g "directory setstripe -d ==========================="
5598
5599 test_65h() {
5600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5601         test_mkdir -p $DIR/$tdir
5602         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5603
5604         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5605                                                         error "setstripe"
5606         test_mkdir -p $DIR/$tdir/dd1
5607         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5608                 error "stripe info inherit failed"
5609 }
5610 run_test 65h "directory stripe info inherit ===================="
5611
5612 test_65i() { # bug6367
5613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5614         $SETSTRIPE -S 65536 -c -1 $MOUNT
5615 }
5616 run_test 65i "set non-default striping on root directory (bug 6367)="
5617
5618 test_65ia() { # bug12836
5619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5620         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5621 }
5622 run_test 65ia "getstripe on -1 default directory striping"
5623
5624 test_65ib() { # bug12836
5625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5626         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5627 }
5628 run_test 65ib "getstripe -v on -1 default directory striping"
5629
5630 test_65ic() { # bug12836
5631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5632         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5633 }
5634 run_test 65ic "new find on -1 default directory striping"
5635
5636 test_65j() { # bug6367
5637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5638         sync; sleep 1
5639         # if we aren't already remounting for each test, do so for this test
5640         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5641                 cleanup || error "failed to unmount"
5642                 setup
5643         fi
5644         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5645 }
5646 run_test 65j "set default striping on root directory (bug 6367)="
5647
5648 test_65k() { # bug11679
5649         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5650         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5651         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5652
5653         local disable_precreate=true
5654         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5655                 disable_precreate=false
5656
5657         echo "Check OST status: "
5658         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5659                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5660
5661         for OSC in $MDS_OSCS; do
5662                 echo $OSC "is active"
5663                 do_facet $SINGLEMDS lctl --device %$OSC activate
5664         done
5665
5666         for INACTIVE_OSC in $MDS_OSCS; do
5667                 local ost=$(osc_to_ost $INACTIVE_OSC)
5668                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5669                                lov.*md*.target_obd |
5670                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5671
5672                 mkdir -p $DIR/$tdir
5673                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5674                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5675
5676                 echo "Deactivate: " $INACTIVE_OSC
5677                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5678
5679                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5680                               osp.$ost*MDT0000.create_count")
5681                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5682                                   osp.$ost*MDT0000.max_create_count")
5683                 $disable_precreate &&
5684                         do_facet $SINGLEMDS "lctl set_param -n \
5685                                 osp.$ost*MDT0000.max_create_count=0"
5686
5687                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5688                         [ -f $DIR/$tdir/$idx ] && continue
5689                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5690                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5691                                 error "setstripe $idx should succeed"
5692                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5693                 done
5694                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5695                 rmdir $DIR/$tdir
5696
5697                 do_facet $SINGLEMDS "lctl set_param -n \
5698                         osp.$ost*MDT0000.max_create_count=$max_count"
5699                 do_facet $SINGLEMDS "lctl set_param -n \
5700                         osp.$ost*MDT0000.create_count=$count"
5701                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5702                 echo $INACTIVE_OSC "is Activate"
5703
5704                 wait_osc_import_state mds ost$ostnum FULL
5705         done
5706 }
5707 run_test 65k "validate manual striping works properly with deactivated OSCs"
5708
5709 test_65l() { # bug 12836
5710         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5711         test_mkdir -p $DIR/$tdir/test_dir
5712         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5713         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5714 }
5715 run_test 65l "lfs find on -1 stripe dir ========================"
5716
5717 test_65m() {
5718         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5719         true
5720 }
5721 run_test 65m "normal user can't set filesystem default stripe"
5722
5723 # bug 2543 - update blocks count on client
5724 test_66() {
5725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5726         COUNT=${COUNT:-8}
5727         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5728         sync; sync_all_data; sync; sync_all_data
5729         cancel_lru_locks osc
5730         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5731         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5732 }
5733 run_test 66 "update inode blocks count on client ==============="
5734
5735 LLOOP=
5736 LLITELOOPLOAD=
5737 cleanup_68() {
5738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5739         trap 0
5740         if [ ! -z "$LLOOP" ]; then
5741                 if swapon -s | grep -q $LLOOP; then
5742                         swapoff $LLOOP || error "swapoff failed"
5743                 fi
5744
5745                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5746                 rm -f $LLOOP
5747                 unset LLOOP
5748         fi
5749         rm -f $DIR/f68*
5750 }
5751
5752 meminfo() {
5753         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5754 }
5755
5756 swap_used() {
5757         swapon -s | awk '($1 == "'$1'") { print $4 }'
5758 }
5759
5760 # bug5265, obdfilter oa2dentry return -ENOENT
5761 # #define OBD_FAIL_SRV_ENOENT 0x217
5762 test_69() {
5763         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5764         remote_ost_nodsh && skip "remote OST with nodsh" && return
5765
5766         f="$DIR/$tfile"
5767         $SETSTRIPE -c 1 -i 0 $f
5768
5769         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5770
5771         do_facet ost1 lctl set_param fail_loc=0x217
5772         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5773         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5774
5775         do_facet ost1 lctl set_param fail_loc=0
5776         $DIRECTIO write $f 0 2 || error "write error"
5777
5778         cancel_lru_locks osc
5779         $DIRECTIO read $f 0 1 || error "read error"
5780
5781         do_facet ost1 lctl set_param fail_loc=0x217
5782         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5783
5784         do_facet ost1 lctl set_param fail_loc=0
5785         rm -f $f
5786 }
5787 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5788
5789 test_71() {
5790         test_mkdir -p $DIR/$tdir
5791         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5792         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5793 }
5794 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5795
5796 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5797         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5798         [ "$RUNAS_ID" = "$UID" ] &&
5799                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5800
5801         # Check that testing environment is properly set up. Skip if not
5802         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5803                 skip_env "User $RUNAS_ID does not exist - skipping"
5804                 return 0
5805         }
5806         touch $DIR/$tfile
5807         chmod 777 $DIR/$tfile
5808         chmod ug+s $DIR/$tfile
5809         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5810                 error "$RUNAS dd $DIR/$tfile failed"
5811         # See if we are still setuid/sgid
5812         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5813                 error "S/gid is not dropped on write"
5814         # Now test that MDS is updated too
5815         cancel_lru_locks mdc
5816         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5817                 error "S/gid is not dropped on MDS"
5818         rm -f $DIR/$tfile
5819 }
5820 run_test 72a "Test that remove suid works properly (bug5695) ===="
5821
5822 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5823         local perm
5824
5825         [ "$RUNAS_ID" = "$UID" ] && \
5826                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5827         [ "$RUNAS_ID" -eq 0 ] && \
5828                 skip_env "RUNAS_ID = 0 -- skipping" && return
5829
5830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5831         # Check that testing environment is properly set up. Skip if not
5832         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5833                 skip_env "User $RUNAS_ID does not exist - skipping"
5834                 return 0
5835         }
5836         touch $DIR/${tfile}-f{g,u}
5837         test_mkdir $DIR/${tfile}-dg
5838         test_mkdir $DIR/${tfile}-du
5839         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5840         chmod g+s $DIR/${tfile}-{f,d}g
5841         chmod u+s $DIR/${tfile}-{f,d}u
5842         for perm in 777 2777 4777; do
5843                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5844                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5845                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5846                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5847         done
5848         true
5849 }
5850 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5851
5852 # bug 3462 - multiple simultaneous MDC requests
5853 test_73() {
5854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5855         test_mkdir $DIR/d73-1
5856         test_mkdir $DIR/d73-2
5857         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5858         pid1=$!
5859
5860         lctl set_param fail_loc=0x80000129
5861         $MULTIOP $DIR/d73-1/f73-2 Oc &
5862         sleep 1
5863         lctl set_param fail_loc=0
5864
5865         $MULTIOP $DIR/d73-2/f73-3 Oc &
5866         pid3=$!
5867
5868         kill -USR1 $pid1
5869         wait $pid1 || return 1
5870
5871         sleep 25
5872
5873         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5874         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5875         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5876
5877         rm -rf $DIR/d73-*
5878 }
5879 run_test 73 "multiple MDC requests (should not deadlock)"
5880
5881 test_74a() { # bug 6149, 6184
5882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5883         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5884         #
5885         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5886         # will spin in a tight reconnection loop
5887         touch $DIR/f74a
5888         $LCTL set_param fail_loc=0x8000030e
5889         # get any lock that won't be difficult - lookup works.
5890         ls $DIR/f74a
5891         $LCTL set_param fail_loc=0
5892         rm -f $DIR/f74a
5893         true
5894 }
5895 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5896
5897 test_74b() { # bug 13310
5898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5899         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5900         #
5901         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5902         # will spin in a tight reconnection loop
5903         $LCTL set_param fail_loc=0x8000030e
5904         # get a "difficult" lock
5905         touch $DIR/f74b
5906         $LCTL set_param fail_loc=0
5907         rm -f $DIR/f74b
5908         true
5909 }
5910 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5911
5912 test_74c() {
5913         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5914         #define OBD_FAIL_LDLM_NEW_LOCK
5915         $LCTL set_param fail_loc=0x319
5916         touch $DIR/$tfile && error "touch successful"
5917         $LCTL set_param fail_loc=0
5918         true
5919 }
5920 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5921
5922 num_inodes() {
5923         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5924 }
5925
5926 get_inode_slab_tunables() {
5927         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5928 }
5929
5930 set_inode_slab_tunables() {
5931         echo "lustre_inode_cache $1" > /proc/slabinfo
5932 }
5933
5934 test_76() { # Now for bug 20433, added originally in bug 1443
5935         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5936         local SLAB_SETTINGS=$(get_inode_slab_tunables)
5937         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
5938         # we cannot set limit below 1 which means 1 inode in each
5939         # per-cpu cache is still allowed
5940         set_inode_slab_tunables "1 1 0"
5941         cancel_lru_locks osc
5942         BEFORE_INODES=$(num_inodes)
5943         echo "before inodes: $BEFORE_INODES"
5944         local COUNT=1000
5945         [ "$SLOW" = "no" ] && COUNT=100
5946         for i in $(seq $COUNT); do
5947                 touch $DIR/$tfile
5948                 rm -f $DIR/$tfile
5949         done
5950         cancel_lru_locks osc
5951         AFTER_INODES=$(num_inodes)
5952         echo "after inodes: $AFTER_INODES"
5953         local wait=0
5954         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
5955                 sleep 2
5956                 AFTER_INODES=$(num_inodes)
5957                 wait=$((wait+2))
5958                 echo "wait $wait seconds inodes: $AFTER_INODES"
5959                 if [ $wait -gt 30 ]; then
5960                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5961                 fi
5962         done
5963         set_inode_slab_tunables "$SLAB_SETTINGS"
5964 }
5965 run_test 76 "confirm clients recycle inodes properly ===="
5966
5967
5968 export ORIG_CSUM=""
5969 set_checksums()
5970 {
5971         # Note: in sptlrpc modes which enable its own bulk checksum, the
5972         # original crc32_le bulk checksum will be automatically disabled,
5973         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5974         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5975         # In this case set_checksums() will not be no-op, because sptlrpc
5976         # bulk checksum will be enabled all through the test.
5977
5978         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5979         lctl set_param -n osc.*.checksums $1
5980         return 0
5981 }
5982
5983 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5984                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5985 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5986 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5987 set_checksum_type()
5988 {
5989         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5990         log "set checksum type to $1"
5991         return 0
5992 }
5993 F77_TMP=$TMP/f77-temp
5994 F77SZ=8
5995 setup_f77() {
5996         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5997                 error "error writing to $F77_TMP"
5998 }
5999
6000 test_77a() { # bug 10889
6001         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6002         $GSS && skip "could not run with gss" && return
6003         [ ! -f $F77_TMP ] && setup_f77
6004         set_checksums 1
6005         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6006         set_checksums 0
6007         rm -f $DIR/$tfile
6008 }
6009 run_test 77a "normal checksum read/write operation"
6010
6011 test_77b() { # bug 10889
6012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6013         $GSS && skip "could not run with gss" && return
6014         [ ! -f $F77_TMP ] && setup_f77
6015         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6016         $LCTL set_param fail_loc=0x80000409
6017         set_checksums 1
6018
6019         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6020                 error "dd error: $?"
6021         $LCTL set_param fail_loc=0
6022
6023         for algo in $CKSUM_TYPES; do
6024                 cancel_lru_locks osc
6025                 set_checksum_type $algo
6026                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6027                 $LCTL set_param fail_loc=0x80000408
6028                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6029                 $LCTL set_param fail_loc=0
6030         done
6031         set_checksums 0
6032         set_checksum_type $ORIG_CSUM_TYPE
6033         rm -f $DIR/$tfile
6034 }
6035 run_test 77b "checksum error on client write, read"
6036
6037 test_77d() { # bug 10889
6038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6039         $GSS && skip "could not run with gss" && return
6040         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6041         $LCTL set_param fail_loc=0x80000409
6042         set_checksums 1
6043         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6044                 error "direct write: rc=$?"
6045         $LCTL set_param fail_loc=0
6046         set_checksums 0
6047
6048         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6049         $LCTL set_param fail_loc=0x80000408
6050         set_checksums 1
6051         cancel_lru_locks osc
6052         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6053                 error "direct read: rc=$?"
6054         $LCTL set_param fail_loc=0
6055         set_checksums 0
6056 }
6057 run_test 77d "checksum error on OST direct write, read"
6058
6059 test_77f() { # bug 10889
6060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6061         $GSS && skip "could not run with gss" && return
6062         set_checksums 1
6063         for algo in $CKSUM_TYPES; do
6064                 cancel_lru_locks osc
6065                 set_checksum_type $algo
6066                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6067                 $LCTL set_param fail_loc=0x409
6068                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6069                         error "direct write succeeded"
6070                 $LCTL set_param fail_loc=0
6071         done
6072         set_checksum_type $ORIG_CSUM_TYPE
6073         set_checksums 0
6074 }
6075 run_test 77f "repeat checksum error on write (expect error)"
6076
6077 test_77g() { # bug 10889
6078         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6079         $GSS && skip "could not run with gss" && return
6080         remote_ost_nodsh && skip "remote OST with nodsh" && return
6081
6082         [ ! -f $F77_TMP ] && setup_f77
6083
6084         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6085         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6086         do_facet ost1 lctl set_param fail_loc=0x8000021a
6087         set_checksums 1
6088         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6089                 error "write error: rc=$?"
6090         do_facet ost1 lctl set_param fail_loc=0
6091         set_checksums 0
6092
6093         cancel_lru_locks osc
6094         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6095         do_facet ost1 lctl set_param fail_loc=0x8000021b
6096         set_checksums 1
6097         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6098         do_facet ost1 lctl set_param fail_loc=0
6099         set_checksums 0
6100 }
6101 run_test 77g "checksum error on OST write, read"
6102
6103 test_77i() { # bug 13805
6104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6105         $GSS && skip "could not run with gss" && return
6106         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
6107         lctl set_param fail_loc=0x40b
6108         remount_client $MOUNT
6109         lctl set_param fail_loc=0
6110         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6111                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6112                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6113                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6114         done
6115         remount_client $MOUNT
6116 }
6117 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
6118
6119 test_77j() { # bug 13805
6120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6121         $GSS && skip "could not run with gss" && return
6122         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6123         lctl set_param fail_loc=0x40c
6124         remount_client $MOUNT
6125         lctl set_param fail_loc=0
6126         sleep 2 # wait async osc connect to finish
6127         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6128                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6129                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6130                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6131         done
6132         remount_client $MOUNT
6133 }
6134 run_test 77j "client only supporting ADLER32"
6135
6136 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6137 rm -f $F77_TMP
6138 unset F77_TMP
6139
6140 cleanup_test_78() {
6141         trap 0
6142         rm -f $DIR/$tfile
6143 }
6144
6145 test_78() { # bug 10901
6146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6147         remote_ost || { skip_env "local OST" && return; }
6148
6149         NSEQ=5
6150         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6151         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6152         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6153         echo "MemTotal: $MEMTOTAL"
6154
6155         # reserve 256MB of memory for the kernel and other running processes,
6156         # and then take 1/2 of the remaining memory for the read/write buffers.
6157         if [ $MEMTOTAL -gt 512 ] ;then
6158                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6159         else
6160                 # for those poor memory-starved high-end clusters...
6161                 MEMTOTAL=$((MEMTOTAL / 2))
6162         fi
6163         echo "Mem to use for directio: $MEMTOTAL"
6164
6165         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6166         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6167         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6168         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6169                 head -n1)
6170         echo "Smallest OST: $SMALLESTOST"
6171         [[ $SMALLESTOST -lt 10240 ]] &&
6172                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6173
6174         trap cleanup_test_78 EXIT
6175
6176         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6177                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6178
6179         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6180         echo "File size: $F78SIZE"
6181         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6182         for i in $(seq 1 $NSEQ); do
6183                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6184                 echo directIO rdwr round $i of $NSEQ
6185                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6186         done
6187
6188         cleanup_test_78
6189 }
6190 run_test 78 "handle large O_DIRECT writes correctly ============"
6191
6192 test_79() { # bug 12743
6193         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6194         wait_delete_completed
6195
6196         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6197         BKFREE=$(calc_osc_kbytes kbytesfree)
6198         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6199
6200         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6201         DFTOTAL=`echo $STRING | cut -d, -f1`
6202         DFUSED=`echo $STRING  | cut -d, -f2`
6203         DFAVAIL=`echo $STRING | cut -d, -f3`
6204         DFFREE=$(($DFTOTAL - $DFUSED))
6205
6206         ALLOWANCE=$((64 * $OSTCOUNT))
6207
6208         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6209            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6210                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6211         fi
6212         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6213            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6214                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6215         fi
6216         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6217            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6218                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6219         fi
6220 }
6221 run_test 79 "df report consistency check ======================="
6222
6223 test_80() { # bug 10718
6224         remote_ost_nodsh && skip "remote OST with nodsh" && return
6225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6226         # relax strong synchronous semantics for slow backends like ZFS
6227         local soc="obdfilter.*.sync_on_lock_cancel"
6228         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6229         local hosts=
6230         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6231                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6232                           facet_active_host $host; done | sort -u)
6233                 do_nodes $hosts lctl set_param $soc=never
6234         fi
6235
6236         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6237         sync; sleep 1; sync
6238         local BEFORE=`date +%s`
6239         cancel_lru_locks osc
6240         local AFTER=`date +%s`
6241         local DIFF=$((AFTER-BEFORE))
6242         if [ $DIFF -gt 1 ] ; then
6243                 error "elapsed for 1M@1T = $DIFF"
6244         fi
6245
6246         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6247
6248         rm -f $DIR/$tfile
6249 }
6250 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6251
6252 test_81a() { # LU-456
6253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6254         remote_ost_nodsh && skip "remote OST with nodsh" && return
6255         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6256         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6257         do_facet ost1 lctl set_param fail_loc=0x80000228
6258
6259         # write should trigger a retry and success
6260         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6261         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6262         RC=$?
6263         if [ $RC -ne 0 ] ; then
6264                 error "write should success, but failed for $RC"
6265         fi
6266 }
6267 run_test 81a "OST should retry write when get -ENOSPC ==============="
6268
6269 test_81b() { # LU-456
6270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6271         remote_ost_nodsh && skip "remote OST with nodsh" && return
6272         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6273         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6274         do_facet ost1 lctl set_param fail_loc=0x228
6275
6276         # write should retry several times and return -ENOSPC finally
6277         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6278         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6279         RC=$?
6280         ENOSPC=28
6281         if [ $RC -ne $ENOSPC ] ; then
6282                 error "dd should fail for -ENOSPC, but succeed."
6283         fi
6284 }
6285 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6286
6287 test_82() { # LU-1031
6288         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6289         local gid1=14091995
6290         local gid2=16022000
6291
6292         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6293         local MULTIPID1=$!
6294         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6295         local MULTIPID2=$!
6296         kill -USR1 $MULTIPID2
6297         sleep 2
6298         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6299                 error "First grouplock does not block second one"
6300         else
6301                 echo "Second grouplock blocks first one"
6302         fi
6303         kill -USR1 $MULTIPID1
6304         wait $MULTIPID1
6305         wait $MULTIPID2
6306 }
6307 run_test 82 "Basic grouplock test ==============================="
6308
6309 test_99a() {
6310         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6311                 return
6312         test_mkdir -p $DIR/d99cvsroot
6313         chown $RUNAS_ID $DIR/d99cvsroot
6314         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6315         cd $TMP
6316
6317         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6318         cd $oldPWD
6319 }
6320 run_test 99a "cvs init ========================================="
6321
6322 test_99b() {
6323         [ -z "$(which cvs 2>/dev/null)" ] &&
6324                 skip_env "could not find cvs" && return
6325         [ ! -d $DIR/d99cvsroot ] && test_99a
6326         cd /etc/init.d
6327         # some versions of cvs import exit(1) when asked to import links or
6328         # files they can't read.  ignore those files.
6329         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6330                         ! -perm /4 -printf '-I %f\n')
6331         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6332                 d99reposname vtag rtag
6333 }
6334 run_test 99b "cvs import ======================================="
6335
6336 test_99c() {
6337         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6338         [ ! -d $DIR/d99cvsroot ] && test_99b
6339         cd $DIR
6340         test_mkdir -p $DIR/d99reposname
6341         chown $RUNAS_ID $DIR/d99reposname
6342         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6343 }
6344 run_test 99c "cvs checkout ====================================="
6345
6346 test_99d() {
6347         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6348         [ ! -d $DIR/d99cvsroot ] && test_99c
6349         cd $DIR/d99reposname
6350         $RUNAS touch foo99
6351         $RUNAS cvs add -m 'addmsg' foo99
6352 }
6353 run_test 99d "cvs add =========================================="
6354
6355 test_99e() {
6356         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6357         [ ! -d $DIR/d99cvsroot ] && test_99c
6358         cd $DIR/d99reposname
6359         $RUNAS cvs update
6360 }
6361 run_test 99e "cvs update ======================================="
6362
6363 test_99f() {
6364         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6365         [ ! -d $DIR/d99cvsroot ] && test_99d
6366         cd $DIR/d99reposname
6367         $RUNAS cvs commit -m 'nomsg' foo99
6368     rm -fr $DIR/d99cvsroot
6369 }
6370 run_test 99f "cvs commit ======================================="
6371
6372 test_100() {
6373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6374         [ "$NETTYPE" = tcp ] || \
6375                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6376                         return ; }
6377
6378         remote_ost_nodsh && skip "remote OST with nodsh" && return
6379         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6380         remote_servers || \
6381                 { skip "useless for local single node setup" && return; }
6382
6383         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6384                 [ "$PROT" != "tcp" ] && continue
6385                 RPORT=$(echo $REMOTE | cut -d: -f2)
6386                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6387
6388                 rc=0
6389                 LPORT=`echo $LOCAL | cut -d: -f2`
6390                 if [ $LPORT -ge 1024 ]; then
6391                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6392                         netstat -tna
6393                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6394                 fi
6395         done
6396         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6397 }
6398 run_test 100 "check local port using privileged port ==========="
6399
6400 function get_named_value()
6401 {
6402     local tag
6403
6404     tag=$1
6405     while read ;do
6406         line=$REPLY
6407         case $line in
6408         $tag*)
6409             echo $line | sed "s/^$tag[ ]*//"
6410             break
6411             ;;
6412         esac
6413     done
6414 }
6415
6416 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6417                    awk '/^max_cached_mb/ { print $2 }')
6418
6419 cleanup_101a() {
6420         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6421         trap 0
6422 }
6423
6424 test_101a() {
6425         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6426         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6427         local s
6428         local discard
6429         local nreads=10000
6430         local cache_limit=32
6431
6432         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6433         trap cleanup_101a EXIT
6434         $LCTL set_param -n llite.*.read_ahead_stats 0
6435         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6436
6437         #
6438         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6439         #
6440         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6441         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6442
6443         discard=0
6444         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6445                 get_named_value 'read but discarded' | cut -d" " -f1); do
6446                         discard=$(($discard + $s))
6447         done
6448         cleanup_101a
6449
6450         if [[ $(($discard * 10)) -gt $nreads ]]; then
6451                 $LCTL get_param osc.*-osc*.rpc_stats
6452                 $LCTL get_param llite.*.read_ahead_stats
6453                 error "too many ($discard) discarded pages"
6454         fi
6455         rm -f $DIR/$tfile || true
6456 }
6457 run_test 101a "check read-ahead for random reads ================"
6458
6459 setup_test101bc() {
6460         test_mkdir -p $DIR/$tdir
6461         local STRIPE_SIZE=$1
6462         local FILE_LENGTH=$2
6463         STRIPE_OFFSET=0
6464
6465         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6466
6467         local list=$(comma_list $(osts_nodes))
6468         set_osd_param $list '' read_cache_enable 0
6469         set_osd_param $list '' writethrough_cache_enable 0
6470
6471         trap cleanup_test101bc EXIT
6472         # prepare the read-ahead file
6473         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6474
6475         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6476                                 count=$FILE_SIZE_MB 2> /dev/null
6477
6478 }
6479
6480 cleanup_test101bc() {
6481         trap 0
6482         rm -rf $DIR/$tdir
6483         rm -f $DIR/$tfile
6484
6485         local list=$(comma_list $(osts_nodes))
6486         set_osd_param $list '' read_cache_enable 1
6487         set_osd_param $list '' writethrough_cache_enable 1
6488 }
6489
6490 calc_total() {
6491         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6492 }
6493
6494 ra_check_101() {
6495         local READ_SIZE=$1
6496         local STRIPE_SIZE=$2
6497         local FILE_LENGTH=$3
6498         local RA_INC=1048576
6499         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6500         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6501                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6502         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6503                         get_named_value 'read but discarded' |
6504                         cut -d" " -f1 | calc_total)
6505         if [[ $DISCARD -gt $discard_limit ]]; then
6506                 $LCTL get_param llite.*.read_ahead_stats
6507                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6508         else
6509                 echo "Read-ahead success for size ${READ_SIZE}"
6510         fi
6511 }
6512
6513 test_101b() {
6514         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6515         [[ $OSTCOUNT -lt 2 ]] &&
6516                 skip_env "skipping stride IO stride-ahead test" && return
6517         local STRIPE_SIZE=1048576
6518         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6519         if [ $SLOW == "yes" ]; then
6520                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6521         else
6522                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6523         fi
6524
6525         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6526
6527         # prepare the read-ahead file
6528         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6529         cancel_lru_locks osc
6530         for BIDX in 2 4 8 16 32 64 128 256
6531         do
6532                 local BSIZE=$((BIDX*4096))
6533                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6534                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6535                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6536                 $LCTL set_param -n llite.*.read_ahead_stats 0
6537                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6538                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6539                 cancel_lru_locks osc
6540                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6541         done
6542         cleanup_test101bc
6543         true
6544 }
6545 run_test 101b "check stride-io mode read-ahead ================="
6546
6547 test_101c() {
6548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6549         local STRIPE_SIZE=1048576
6550         local FILE_LENGTH=$((STRIPE_SIZE*100))
6551         local nreads=10000
6552         local osc_rpc_stats
6553
6554         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6555
6556         cancel_lru_locks osc
6557         $LCTL set_param osc.*.rpc_stats 0
6558         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6559         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6560                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6561                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6562                 local size
6563
6564                 if [ $lines -le 20 ]; then
6565                         continue
6566                 fi
6567                 for size in 1 2 4 8; do
6568                         local rpc=$(echo "$stats" |
6569                                     awk '($1 == "'$size':") {print $2; exit; }')
6570                         [ $rpc != 0 ] &&
6571                                 error "Small $((size*4))k read IO $rpc !"
6572                 done
6573                 echo "$osc_rpc_stats check passed!"
6574         done
6575         cleanup_test101bc
6576         true
6577 }
6578 run_test 101c "check stripe_size aligned read-ahead ================="
6579
6580 set_read_ahead() {
6581         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6582         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6583 }
6584
6585 test_101d() {
6586         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6587         local file=$DIR/$tfile
6588         local sz_MB=${FILESIZE_101d:-500}
6589         local ra_MB=${READAHEAD_MB:-40}
6590
6591         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6592         [ $free_MB -lt $sz_MB ] &&
6593                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6594
6595         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6596         $SETSTRIPE -c -1 $file || error "setstripe failed"
6597
6598         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6599         echo Cancel LRU locks on lustre client to flush the client cache
6600         cancel_lru_locks osc
6601
6602         echo Disable read-ahead
6603         local old_READAHEAD=$(set_read_ahead 0)
6604
6605         echo Reading the test file $file with read-ahead disabled
6606         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6607
6608         echo Cancel LRU locks on lustre client to flush the client cache
6609         cancel_lru_locks osc
6610         echo Enable read-ahead with ${ra_MB}MB
6611         set_read_ahead $ra_MB
6612
6613         echo Reading the test file $file with read-ahead enabled
6614         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6615
6616         echo "read-ahead disabled time read $raOFF"
6617         echo "read-ahead enabled  time read $raON"
6618
6619         set_read_ahead $old_READAHEAD
6620         rm -f $file
6621         wait_delete_completed
6622
6623         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6624                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6625 }
6626 run_test 101d "file read with and without read-ahead enabled"
6627
6628 test_101e() {
6629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6630         local file=$DIR/$tfile
6631         local size_KB=500  #KB
6632         local count=100
6633         local bsize=1024
6634
6635         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6636         local need_KB=$((count * size_KB))
6637         [[ $free_KB -le $need_KB ]] &&
6638                 skip_env "Need free space $need_KB, have $free_KB" && return
6639
6640         echo "Creating $count ${size_KB}K test files"
6641         for ((i = 0; i < $count; i++)); do
6642                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6643         done
6644
6645         echo "Cancel LRU locks on lustre client to flush the client cache"
6646         cancel_lru_locks osc
6647
6648         echo "Reset readahead stats"
6649         $LCTL set_param -n llite.*.read_ahead_stats 0
6650
6651         for ((i = 0; i < $count; i++)); do
6652                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6653         done
6654
6655         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6656                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6657
6658         for ((i = 0; i < $count; i++)); do
6659                 rm -rf $file.$i 2>/dev/null
6660         done
6661
6662         #10000 means 20% reads are missing in readahead
6663         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6664 }
6665 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6666
6667 test_101f() {
6668         which iozone || { skip "no iozone installed" && return; }
6669
6670         local old_debug=$($LCTL get_param debug)
6671         old_debug=${old_debug#*=}
6672         $LCTL set_param debug="reada mmap"
6673
6674         # create a test file
6675         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6676
6677         echo Cancel LRU locks on lustre client to flush the client cache
6678         cancel_lru_locks osc
6679
6680         echo Reset readahead stats
6681         $LCTL set_param -n llite.*.read_ahead_stats 0
6682
6683         echo mmap read the file with small block size
6684         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6685                 > /dev/null 2>&1
6686
6687         echo checking missing pages
6688         $LCTL get_param llite.*.read_ahead_stats
6689         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6690                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6691
6692         $LCTL set_param debug="$old_debug"
6693         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6694         rm -f $DIR/$tfile
6695 }
6696 run_test 101f "check mmap read performance"
6697
6698 test_101g() {
6699         local rpcs
6700         local osts=$(get_facets OST)
6701         local list=$(comma_list $(osts_nodes))
6702         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6703
6704         save_lustre_params $osts "obdfilter.*.brw_size" > $p
6705
6706         $LFS setstripe -c 1 $DIR/$tfile
6707
6708         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6709                 set_osd_param $list '' brw_size 16M
6710
6711                 echo "remount client to enable large RPC size"
6712                 remount_client $MOUNT || error "remount_client failed"
6713
6714                 for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6715                         [ "$mp" -eq 4096 ] ||
6716                                 error "max_pages_per_rpc not correctly set"
6717                 done
6718
6719                 $LCTL set_param -n osc.*.rpc_stats=0
6720
6721                 # 10*16 MiB should be enough for the test
6722                 dd if=/dev/zero of=$DIR/$tfile bs=16M count=10
6723                 cancel_lru_locks osc
6724                 dd of=/dev/null if=$DIR/$tfile bs=16M count=10
6725
6726                 # calculate 16 MiB RPCs
6727                 rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6728                        sed -n '/pages per rpc/,/^$/p' |
6729                        awk 'BEGIN { sum = 0 }; /4096:/ { sum += $2 };
6730                             END { print sum }')
6731                 echo $rpcs RPCs
6732                 [ "$rpcs" -eq 10 ] || error "not all RPCs are 16 MiB BRW rpcs"
6733         fi
6734
6735         echo "set RPC size to 4MB"
6736
6737         $LCTL set_param -n osc.*.max_pages_per_rpc=4M osc.*.rpc_stats=0
6738         dd if=/dev/zero of=$DIR/$tfile bs=4M count=25
6739         cancel_lru_locks osc
6740         dd of=/dev/null if=$DIR/$tfile bs=4M count=25
6741
6742         # calculate 4 MiB RPCs
6743         rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6744                 sed -n '/pages per rpc/,/^$/p' |
6745                 awk 'BEGIN { sum = 0 }; /1024:/ { sum += $2 };
6746                      END { print sum }')
6747         echo $rpcs RPCs
6748         [ "$rpcs" -eq 25 ] || error "not all RPCs are 4 MiB BRW rpcs"
6749
6750         restore_lustre_params < $p
6751         remount_client $MOUNT || error "remount_client failed"
6752
6753         rm -f $p $DIR/$tfile
6754 }
6755 run_test 101g "Big bulk(4/16 MiB) readahead"
6756
6757 setup_test102() {
6758         test_mkdir -p $DIR/$tdir
6759         chown $RUNAS_ID $DIR/$tdir
6760         STRIPE_SIZE=65536
6761         STRIPE_OFFSET=1
6762         STRIPE_COUNT=$OSTCOUNT
6763         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6764
6765         trap cleanup_test102 EXIT
6766         cd $DIR
6767         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6768         cd $DIR/$tdir
6769         for num in 1 2 3 4; do
6770                 for count in $(seq 1 $STRIPE_COUNT); do
6771                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6772                                 local size=`expr $STRIPE_SIZE \* $num`
6773                                 local file=file"$num-$idx-$count"
6774                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6775                         done
6776                 done
6777         done
6778
6779         cd $DIR
6780         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6781 }
6782
6783 cleanup_test102() {
6784         trap 0
6785         rm -f $TMP/f102.tar
6786         rm -rf $DIR/d0.sanity/d102
6787 }
6788
6789 test_102a() {
6790         local testfile=$DIR/$tfile
6791
6792         touch $testfile
6793
6794         [ "$UID" != 0 ] && skip_env "must run as root" && return
6795         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6796                 skip_env "must have user_xattr" && return
6797
6798         [ -z "$(which setfattr 2>/dev/null)" ] &&
6799                 skip_env "could not find setfattr" && return
6800
6801         echo "set/get xattr..."
6802         setfattr -n trusted.name1 -v value1 $testfile ||
6803                 error "setfattr -n trusted.name1=value1 $testfile failed"
6804         getfattr -n trusted.name1 $testfile 2> /dev/null |
6805           grep "trusted.name1=.value1" ||
6806                 error "$testfile missing trusted.name1=value1"
6807
6808         setfattr -n user.author1 -v author1 $testfile ||
6809                 error "setfattr -n user.author1=author1 $testfile failed"
6810         getfattr -n user.author1 $testfile 2> /dev/null |
6811           grep "user.author1=.author1" ||
6812                 error "$testfile missing trusted.author1=author1"
6813
6814         echo "listxattr..."
6815         setfattr -n trusted.name2 -v value2 $testfile ||
6816                 error "$testfile unable to set trusted.name2"
6817         setfattr -n trusted.name3 -v value3 $testfile ||
6818                 error "$testfile unable to set trusted.name3"
6819         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6820             grep "trusted.name" | wc -l) -eq 3 ] ||
6821                 error "$testfile missing 3 trusted.name xattrs"
6822
6823         setfattr -n user.author2 -v author2 $testfile ||
6824                 error "$testfile unable to set user.author2"
6825         setfattr -n user.author3 -v author3 $testfile ||
6826                 error "$testfile unable to set user.author3"
6827         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6828             grep "user.author" | wc -l) -eq 3 ] ||
6829                 error "$testfile missing 3 user.author xattrs"
6830
6831         echo "remove xattr..."
6832         setfattr -x trusted.name1 $testfile ||
6833                 error "$testfile error deleting trusted.name1"
6834         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6835                 error "$testfile did not delete trusted.name1 xattr"
6836
6837         setfattr -x user.author1 $testfile ||
6838                 error "$testfile error deleting user.author1"
6839         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6840                 error "$testfile did not delete trusted.name1 xattr"
6841
6842         # b10667: setting lustre special xattr be silently discarded
6843         echo "set lustre special xattr ..."
6844         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6845                 error "$testfile allowed setting trusted.lov"
6846 }
6847 run_test 102a "user xattr test =================================="
6848
6849 test_102b() {
6850         [ -z "$(which setfattr 2>/dev/null)" ] &&
6851                 skip_env "could not find setfattr" && return
6852
6853         # b10930: get/set/list trusted.lov xattr
6854         echo "get/set/list trusted.lov xattr ..."
6855         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6856         local testfile=$DIR/$tfile
6857         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6858                 error "setstripe failed"
6859         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6860                 error "getstripe failed"
6861         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6862                 error "can't get trusted.lov from $testfile"
6863
6864         local testfile2=${testfile}2
6865         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6866                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6867
6868         $MCREATE $testfile2
6869         setfattr -n trusted.lov -v $value $testfile2
6870         local stripe_size=$($GETSTRIPE -S $testfile2)
6871         local stripe_count=$($GETSTRIPE -c $testfile2)
6872         [[ $stripe_size -eq 65536 ]] ||
6873                 error "stripe size $stripe_size != 65536"
6874         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6875                 error "stripe count $stripe_count != $STRIPECOUNT"
6876         rm -f $DIR/$tfile
6877 }
6878 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6879
6880 test_102c() {
6881         [ -z "$(which setfattr 2>/dev/null)" ] &&
6882                 skip_env "could not find setfattr" && return
6883
6884         # b10930: get/set/list lustre.lov xattr
6885         echo "get/set/list lustre.lov xattr ..."
6886         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6887         test_mkdir -p $DIR/$tdir
6888         chown $RUNAS_ID $DIR/$tdir
6889         local testfile=$DIR/$tdir/$tfile
6890         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6891                 error "setstripe failed"
6892         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6893                 error "getstripe failed"
6894         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6895         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6896
6897         local testfile2=${testfile}2
6898         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6899                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6900
6901         $RUNAS $MCREATE $testfile2
6902         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6903         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6904         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6905         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6906         [ $stripe_count -eq $STRIPECOUNT ] ||
6907                 error "stripe count $stripe_count != $STRIPECOUNT"
6908 }
6909 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6910
6911 compare_stripe_info1() {
6912         local stripe_index_all_zero=true
6913
6914         for num in 1 2 3 4; do
6915                 for count in $(seq 1 $STRIPE_COUNT); do
6916                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6917                                 local size=$((STRIPE_SIZE * num))
6918                                 local file=file"$num-$offset-$count"
6919                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6920                                 [[ $stripe_size -ne $size ]] &&
6921                                     error "$file: size $stripe_size != $size"
6922                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6923                                 # allow fewer stripes to be created, ORI-601
6924                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6925                                     error "$file: count $stripe_count != $count"
6926                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6927                                 [[ $stripe_index -ne 0 ]] &&
6928                                         stripe_index_all_zero=false
6929                         done
6930                 done
6931         done
6932         $stripe_index_all_zero &&
6933                 error "all files are being extracted starting from OST index 0"
6934         return 0
6935 }
6936
6937 find_lustre_tar() {
6938         [ -n "$(which tar 2>/dev/null)" ] &&
6939                 strings $(which tar) | grep -q "lustre" && echo tar
6940 }
6941
6942 test_102d() {
6943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6944         # b10930: tar test for trusted.lov xattr
6945         TAR=$(find_lustre_tar)
6946         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6947         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6948         setup_test102
6949         test_mkdir -p $DIR/d102d
6950         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6951         cd $DIR/d102d/$tdir
6952         compare_stripe_info1
6953 }
6954 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6955
6956 test_102f() {
6957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6958         # b10930: tar test for trusted.lov xattr
6959         TAR=$(find_lustre_tar)
6960         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6961         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6962         setup_test102
6963         test_mkdir -p $DIR/d102f
6964         cd $DIR
6965         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6966         cd $DIR/d102f/$tdir
6967         compare_stripe_info1
6968 }
6969 run_test 102f "tar copy files, not keep osts ==========="
6970
6971 grow_xattr() {
6972         local xsize=${1:-1024}  # in bytes
6973         local file=$DIR/$tfile
6974
6975         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
6976                 skip "must have user_xattr" && return 0
6977         [ -z "$(which setfattr 2>/dev/null)" ] &&
6978                 skip_env "could not find setfattr" && return 0
6979         [ -z "$(which getfattr 2>/dev/null)" ] &&
6980                 skip_env "could not find getfattr" && return 0
6981
6982         touch $file
6983
6984         local value="$(generate_string $xsize)"
6985
6986         local xbig=trusted.big
6987         log "save $xbig on $file"
6988         setfattr -n $xbig -v $value $file ||
6989                 error "saving $xbig on $file failed"
6990
6991         local orig=$(get_xattr_value $xbig $file)
6992         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6993
6994         local xsml=trusted.sml
6995         log "save $xsml on $file"
6996         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6997
6998         local new=$(get_xattr_value $xbig $file)
6999         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7000
7001         log "grow $xsml on $file"
7002         setfattr -n $xsml -v "$value" $file ||
7003                 error "growing $xsml on $file failed"
7004
7005         new=$(get_xattr_value $xbig $file)
7006         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7007         log "$xbig still valid after growing $xsml"
7008
7009         rm -f $file
7010 }
7011
7012 test_102h() { # bug 15777
7013         grow_xattr 1024
7014 }
7015 run_test 102h "grow xattr from inside inode to external block"
7016
7017 test_102ha() {
7018         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7019         grow_xattr $(max_xattr_size)
7020 }
7021 run_test 102ha "grow xattr from inside inode to external inode"
7022
7023 test_102i() { # bug 17038
7024         [ -z "$(which getfattr 2>/dev/null)" ] &&
7025                 skip "could not find getfattr" && return
7026         touch $DIR/$tfile
7027         ln -s $DIR/$tfile $DIR/${tfile}link
7028         getfattr -n trusted.lov $DIR/$tfile ||
7029                 error "lgetxattr on $DIR/$tfile failed"
7030         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7031                 grep -i "no such attr" ||
7032                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7033         rm -f $DIR/$tfile $DIR/${tfile}link
7034 }
7035 run_test 102i "lgetxattr test on symbolic link ============"
7036
7037 test_102j() {
7038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7039         TAR=$(find_lustre_tar)
7040         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7041         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7042         setup_test102 "$RUNAS"
7043         test_mkdir -p $DIR/d102j
7044         chown $RUNAS_ID $DIR/d102j
7045         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
7046         cd $DIR/d102j/$tdir
7047         compare_stripe_info1 "$RUNAS"
7048 }
7049 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7050
7051 test_102k() {
7052         [ -z "$(which setfattr 2>/dev/null)" ] &&
7053                 skip "could not find setfattr" && return
7054         touch $DIR/$tfile
7055         # b22187 just check that does not crash for regular file.
7056         setfattr -n trusted.lov $DIR/$tfile
7057         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7058         local test_kdir=$DIR/d102k
7059         test_mkdir $test_kdir
7060         local default_size=`$GETSTRIPE -S $test_kdir`
7061         local default_count=`$GETSTRIPE -c $test_kdir`
7062         local default_offset=`$GETSTRIPE -i $test_kdir`
7063         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7064                 error 'dir setstripe failed'
7065         setfattr -n trusted.lov $test_kdir
7066         local stripe_size=`$GETSTRIPE -S $test_kdir`
7067         local stripe_count=`$GETSTRIPE -c $test_kdir`
7068         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7069         [ $stripe_size -eq $default_size ] ||
7070                 error "stripe size $stripe_size != $default_size"
7071         [ $stripe_count -eq $default_count ] ||
7072                 error "stripe count $stripe_count != $default_count"
7073         [ $stripe_offset -eq $default_offset ] ||
7074                 error "stripe offset $stripe_offset != $default_offset"
7075         rm -rf $DIR/$tfile $test_kdir
7076 }
7077 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7078
7079 test_102l() {
7080         [ -z "$(which getfattr 2>/dev/null)" ] &&
7081                 skip "could not find getfattr" && return
7082
7083         # LU-532 trusted. xattr is invisible to non-root
7084         local testfile=$DIR/$tfile
7085
7086         touch $testfile
7087
7088         echo "listxattr as user..."
7089         chown $RUNAS_ID $testfile
7090         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7091             grep -q "trusted" &&
7092                 error "$testfile trusted xattrs are user visible"
7093
7094         return 0;
7095 }
7096 run_test 102l "listxattr size test =================================="
7097
7098 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7099         local path=$DIR/$tfile
7100         touch $path
7101
7102         listxattr_size_check $path || error "listattr_size_check $path failed"
7103 }
7104 run_test 102m "Ensure listxattr fails on small bufffer ========"
7105
7106 cleanup_test102
7107
7108 getxattr() { # getxattr path name
7109         # Return the base64 encoding of the value of xattr name on path.
7110         local path=$1
7111         local name=$2
7112
7113         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7114         # file: $path
7115         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7116         #
7117         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7118
7119         getfattr --absolute-names --encoding=base64 --name=$name $path |
7120                 awk -F= -v name=$name '$1 == name {
7121                         print substr($0, index($0, "=") + 1);
7122         }'
7123 }
7124
7125 test_102n() { # LU-4101 mdt: protect internal xattrs
7126         [ -z "$(which setfattr 2>/dev/null)" ] &&
7127                 skip "could not find setfattr" && return
7128         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7129         then
7130                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7131                 return
7132         fi
7133
7134         local file0=$DIR/$tfile.0
7135         local file1=$DIR/$tfile.1
7136         local xattr0=$TMP/$tfile.0
7137         local xattr1=$TMP/$tfile.1
7138         local namelist="lov lma lmv link fid version som hsm"
7139         local name
7140         local value
7141
7142         rm -rf $file0 $file1 $xattr0 $xattr1
7143         touch $file0 $file1
7144
7145         # Get 'before' xattrs of $file1.
7146         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7147
7148         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7149                 namelist+=" lfsck_namespace"
7150         for name in $namelist; do
7151                 # Try to copy xattr from $file0 to $file1.
7152                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7153
7154                 setfattr --name=trusted.$name --value="$value" $file1 ||
7155                         error "setxattr 'trusted.$name' failed"
7156
7157                 # Try to set a garbage xattr.
7158                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7159
7160                 setfattr --name=trusted.$name --value="$value" $file1 ||
7161                         error "setxattr 'trusted.$name' failed"
7162
7163                 # Try to remove the xattr from $file1. We don't care if this
7164                 # appears to succeed or fail, we just don't want there to be
7165                 # any changes or crashes.
7166                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7167         done
7168
7169         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7170         then
7171                 name="lfsck_ns"
7172                 # Try to copy xattr from $file0 to $file1.
7173                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7174
7175                 setfattr --name=trusted.$name --value="$value" $file1 ||
7176                         error "setxattr 'trusted.$name' failed"
7177
7178                 # Try to set a garbage xattr.
7179                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7180
7181                 setfattr --name=trusted.$name --value="$value" $file1 ||
7182                         error "setxattr 'trusted.$name' failed"
7183
7184                 # Try to remove the xattr from $file1. We don't care if this
7185                 # appears to succeed or fail, we just don't want there to be
7186                 # any changes or crashes.
7187                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7188         fi
7189
7190         # Get 'after' xattrs of file1.
7191         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7192
7193         if ! diff $xattr0 $xattr1; then
7194                 error "before and after xattrs of '$file1' differ"
7195         fi
7196
7197         rm -rf $file0 $file1 $xattr0 $xattr1
7198
7199         return 0
7200 }
7201 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7202
7203 test_102p() { # LU-4703 setxattr did not check ownership
7204         local testfile=$DIR/$tfile
7205
7206         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7207                 skip "MDS needs to be at least 2.5.56" && return
7208
7209         touch $testfile
7210
7211         echo "setfacl as user..."
7212         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7213         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7214
7215         echo "setfattr as user..."
7216         setfacl -m "u:$RUNAS_ID:---" $testfile
7217         $RUNAS setfattr -x system.posix_acl_access $testfile
7218         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7219 }
7220 run_test 102p "check setxattr(2) correctly fails without permission"
7221
7222 test_102q() {
7223         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7224                 skip "MDS needs to be at least 2.6.92" && return
7225         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7226 }
7227 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7228
7229 test_102r() {
7230         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7231                 skip "MDS needs to be at least 2.6.93" && return
7232         touch $DIR/$tfile || error "touch"
7233         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7234         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7235         rm $DIR/$tfile || error "rm"
7236
7237         #normal directory
7238         mkdir -p $DIR/$tdir || error "mkdir"
7239         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7240         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7241         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7242                 error "$testfile error deleting user.author1"
7243         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7244                 grep "user.$(basename $tdir)" &&
7245                 error "$tdir did not delete user.$(basename $tdir)"
7246         rmdir $DIR/$tdir || error "rmdir"
7247
7248         #striped directory
7249         test_mkdir -p $DIR/$tdir || error "make striped dir"
7250         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7251         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7252         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7253                 error "$testfile error deleting user.author1"
7254         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7255                 grep "user.$(basename $tdir)" &&
7256                 error "$tdir did not delete user.$(basename $tdir)"
7257         rmdir $DIR/$tdir || error "rm striped dir"
7258 }
7259 run_test 102r "set EAs with empty values"
7260
7261 run_acl_subtest()
7262 {
7263     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7264     return $?
7265 }
7266
7267 test_103a() {
7268         [ "$UID" != 0 ] && skip_env "must run as root" && return
7269         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7270                 skip "must have acl enabled" && return
7271         [ -z "$(which setfacl 2>/dev/null)" ] &&
7272                 skip_env "could not find setfacl" && return
7273         $GSS && skip "could not run under gss" && return
7274         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7275
7276         gpasswd -a daemon bin                           # LU-5641
7277         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7278
7279         declare -a identity_old
7280
7281         for num in $(seq $MDSCOUNT); do
7282                 switch_identity $num true || identity_old[$num]=$?
7283         done
7284
7285         SAVE_UMASK=$(umask)
7286         umask 0022
7287         mkdir -p $DIR/$tdir
7288         cd $DIR/$tdir
7289
7290         echo "performing cp ..."
7291         run_acl_subtest cp || error "run_acl_subtest cp failed"
7292         echo "performing getfacl-noacl..."
7293         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7294         echo "performing misc..."
7295         run_acl_subtest misc || error  "misc test failed"
7296         echo "performing permissions..."
7297         run_acl_subtest permissions || error "permissions failed"
7298         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7299         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7300              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7301              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7302         then
7303                 echo "performing permissions xattr..."
7304                 run_acl_subtest permissions_xattr ||
7305                         error "permissions_xattr failed"
7306         fi
7307         echo "performing setfacl..."
7308         run_acl_subtest setfacl || error  "setfacl test failed"
7309
7310         # inheritance test got from HP
7311         echo "performing inheritance..."
7312         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7313         chmod +x make-tree || error "chmod +x failed"
7314         run_acl_subtest inheritance || error "inheritance test failed"
7315         rm -f make-tree
7316
7317         echo "LU-974 ignore umask when acl is enabled..."
7318         run_acl_subtest 974 || error "LU-974 umask test failed"
7319         if [ $MDSCOUNT -ge 2 ]; then
7320                 run_acl_subtest 974_remote ||
7321                         error "LU-974 umask test failed under remote dir"
7322         fi
7323
7324         echo "LU-2561 newly created file is same size as directory..."
7325         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7326                 run_acl_subtest 2561 || error "LU-2561 test failed"
7327         else
7328                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7329         fi
7330
7331         run_acl_subtest 4924 || error "LU-4924 test failed"
7332
7333         cd $SAVE_PWD
7334         umask $SAVE_UMASK
7335
7336         for num in $(seq $MDSCOUNT); do
7337                 if [ "${identity_old[$num]}" = 1 ]; then
7338                         switch_identity $num false || identity_old[$num]=$?
7339                 fi
7340         done
7341 }
7342 run_test 103a "acl test ========================================="
7343
7344 test_103b() {
7345         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7346         local noacl=false
7347         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7348         local mountopts=$MDS_MOUNT_OPTS
7349
7350         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7351                 noacl=true
7352         else
7353                 # stop the MDT
7354                 stop $SINGLEMDS || error "failed to stop MDT."
7355                 # remount the MDT
7356                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7357                         MDS_MOUNT_OPTS="-o noacl"
7358                 else
7359                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7360                 fi
7361                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7362                         error "failed to start MDT."
7363                 MDS_MOUNT_OPTS=$mountopts
7364         fi
7365
7366         touch $DIR/$tfile
7367         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7368
7369         if ! $noacl; then
7370                 # stop the MDT
7371                 stop $SINGLEMDS || error "failed to stop MDT."
7372                 # remount the MDT
7373                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7374                         error "failed to start MDT."
7375         fi
7376
7377         true
7378 }
7379 run_test 103b "MDS mount option 'noacl'"
7380
7381 test_103c() {
7382         mkdir -p $DIR/$tdir
7383         cp -rp $DIR/$tdir $DIR/$tdir.bak
7384
7385         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7386                 error "$DIR/$tdir shouldn't contain default ACL"
7387         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7388                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7389         true
7390 }
7391 run_test 103c "'cp -rp' won't set empty acl"
7392
7393 test_104a() {
7394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7395         touch $DIR/$tfile
7396         lfs df || error "lfs df failed"
7397         lfs df -ih || error "lfs df -ih failed"
7398         lfs df -h $DIR || error "lfs df -h $DIR failed"
7399         lfs df -i $DIR || error "lfs df -i $DIR failed"
7400         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7401         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7402
7403         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7404         lctl --device %$OSC deactivate
7405         lfs df || error "lfs df with deactivated OSC failed"
7406         lctl --device %$OSC activate
7407         # wait the osc back to normal
7408         wait_osc_import_state client ost FULL
7409
7410         lfs df || error "lfs df with reactivated OSC failed"
7411         rm -f $DIR/$tfile
7412 }
7413 run_test 104a "lfs df [-ih] [path] test ========================="
7414
7415 test_104b() {
7416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7417         [ $RUNAS_ID -eq $UID ] &&
7418                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7419         chmod 666 /dev/obd
7420         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7421                         grep "Permission denied" | wc -l)))
7422         if [ $denied_cnt -ne 0 ]; then
7423                 error "lfs check servers test failed"
7424         fi
7425 }
7426 run_test 104b "$RUNAS lfs check servers test ===================="
7427
7428 test_105a() {
7429         # doesn't work on 2.4 kernels
7430         touch $DIR/$tfile
7431         if $(flock_is_enabled); then
7432                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7433         else
7434                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7435         fi
7436         rm -f $DIR/$tfile
7437 }
7438 run_test 105a "flock when mounted without -o flock test ========"
7439
7440 test_105b() {
7441         touch $DIR/$tfile
7442         if $(flock_is_enabled); then
7443                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7444         else
7445                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7446         fi
7447         rm -f $DIR/$tfile
7448 }
7449 run_test 105b "fcntl when mounted without -o flock test ========"
7450
7451 test_105c() {
7452         touch $DIR/$tfile
7453         if $(flock_is_enabled); then
7454                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7455         else
7456                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7457         fi
7458         rm -f $DIR/$tfile
7459 }
7460 run_test 105c "lockf when mounted without -o flock test ========"
7461
7462 test_105d() { # bug 15924
7463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7464         test_mkdir -p $DIR/$tdir
7465         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7466         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7467         $LCTL set_param fail_loc=0x80000315
7468         flocks_test 2 $DIR/$tdir
7469 }
7470 run_test 105d "flock race (should not freeze) ========"
7471
7472 test_105e() { # bug 22660 && 22040
7473         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7474         touch $DIR/$tfile
7475         flocks_test 3 $DIR/$tfile
7476 }
7477 run_test 105e "Two conflicting flocks from same process ======="
7478
7479 test_106() { #bug 10921
7480         test_mkdir -p $DIR/$tdir
7481         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7482         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7483 }
7484 run_test 106 "attempt exec of dir followed by chown of that dir"
7485
7486 test_107() {
7487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7488         CDIR=`pwd`
7489         cd $DIR
7490
7491         local file=core
7492         rm -f $file
7493
7494         local save_pattern=$(sysctl -n kernel.core_pattern)
7495         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7496         sysctl -w kernel.core_pattern=$file
7497         sysctl -w kernel.core_uses_pid=0
7498
7499         ulimit -c unlimited
7500         sleep 60 &
7501         SLEEPPID=$!
7502
7503         sleep 1
7504
7505         kill -s 11 $SLEEPPID
7506         wait $SLEEPPID
7507         if [ -e $file ]; then
7508                 size=`stat -c%s $file`
7509                 [ $size -eq 0 ] && error "Fail to create core file $file"
7510         else
7511                 error "Fail to create core file $file"
7512         fi
7513         rm -f $file
7514         sysctl -w kernel.core_pattern=$save_pattern
7515         sysctl -w kernel.core_uses_pid=$save_uses_pid
7516         cd $CDIR
7517 }
7518 run_test 107 "Coredump on SIG"
7519
7520 test_110() {
7521         test_mkdir -p $DIR/$tdir
7522         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7523                 error "mkdir with 255 char failed"
7524         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7525                 error "mkdir with 256 char should fail, but did not"
7526         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7527                 error "create with 255 char failed"
7528         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7529                 error "create with 256 char should fail, but did not"
7530
7531         ls -l $DIR/$tdir
7532         rm -rf $DIR/$tdir
7533 }
7534 run_test 110 "filename length checking"
7535
7536 test_115() {
7537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7538         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7539                 tail -1 | cut -c11-20)
7540         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7541         echo "Starting with $OSTIO_pre threads"
7542
7543         NUMTEST=20000
7544         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7545         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7546         echo "$NUMTEST creates/unlinks"
7547         test_mkdir -p $DIR/$tdir
7548         createmany -o $DIR/$tdir/$tfile $NUMTEST
7549         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7550
7551         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7552                 tail -1 | cut -c11-20)
7553
7554         # don't return an error
7555         [ $OSTIO_post == $OSTIO_pre ] && echo \
7556             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7557             echo "This may be fine, depending on what ran before this test" &&
7558             echo "and how fast this system is." && return
7559
7560         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7561 }
7562 run_test 115 "verify dynamic thread creation===================="
7563
7564 free_min_max () {
7565         wait_delete_completed
7566         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7567         echo "OST kbytes available: ${AVAIL[@]}"
7568         MAXV=${AVAIL[0]}
7569         MAXI=0
7570         MINV=${AVAIL[0]}
7571         MINI=0
7572         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7573                 #echo OST $i: ${AVAIL[i]}kb
7574                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7575                         MAXV=${AVAIL[i]}
7576                         MAXI=$i
7577                 fi
7578                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7579                         MINV=${AVAIL[i]}
7580                         MINI=$i
7581                 fi
7582         done
7583         echo "Min free space: OST $MINI: $MINV"
7584         echo "Max free space: OST $MAXI: $MAXV"
7585 }
7586
7587 test_116a() { # was previously test_116()
7588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7589         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7590
7591         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7592
7593         echo -n "Free space priority "
7594         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7595                 head -n1
7596         declare -a AVAIL
7597         free_min_max
7598
7599         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7600         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7601                 && return
7602         trap simple_cleanup_common EXIT
7603
7604
7605         # Check if we need to generate uneven OSTs
7606         test_mkdir -p $DIR/$tdir/OST${MINI}
7607         local FILL=$((MINV / 4))
7608         local DIFF=$((MAXV - MINV))
7609         local DIFF2=$((DIFF * 100 / MINV))
7610
7611         local threshold=$(do_facet $SINGLEMDS \
7612                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7613         threshold=${threshold%%%}
7614         echo -n "Check for uneven OSTs: "
7615         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7616
7617         if [[ $DIFF2 -gt $threshold ]]; then
7618                 echo "ok"
7619                 echo "Don't need to fill OST$MINI"
7620         else
7621                 # generate uneven OSTs. Write 2% over the QOS threshold value
7622                 echo "no"
7623                 DIFF=$((threshold - DIFF2 + 2))
7624                 DIFF2=$((MINV * DIFF / 100))
7625                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7626                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7627                         error "setstripe failed"
7628                 DIFF=$((DIFF2 / 2048))
7629                 i=0
7630                 while [ $i -lt $DIFF ]; do
7631                         i=$((i + 1))
7632                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7633                                 bs=2M count=1 2>/dev/null
7634                         echo -n .
7635                 done
7636                 echo .
7637                 sync
7638                 sleep_maxage
7639                 free_min_max
7640         fi
7641
7642         DIFF=$((MAXV - MINV))
7643         DIFF2=$((DIFF * 100 / MINV))
7644         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7645         if [ $DIFF2 -gt $threshold ]; then
7646                 echo "ok"
7647         else
7648                 echo "failed - QOS mode won't be used"
7649                 skip "QOS imbalance criteria not met"
7650                 simple_cleanup_common
7651                 return
7652         fi
7653
7654         MINI1=$MINI
7655         MINV1=$MINV
7656         MAXI1=$MAXI
7657         MAXV1=$MAXV
7658
7659         # now fill using QOS
7660         $SETSTRIPE -c 1 $DIR/$tdir
7661         FILL=$((FILL / 200))
7662         if [ $FILL -gt 600 ]; then
7663                 FILL=600
7664         fi
7665         echo "writing $FILL files to QOS-assigned OSTs"
7666         i=0
7667         while [ $i -lt $FILL ]; do
7668                 i=$((i + 1))
7669                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7670                         count=1 2>/dev/null
7671                 echo -n .
7672         done
7673         echo "wrote $i 200k files"
7674         sync
7675         sleep_maxage
7676
7677         echo "Note: free space may not be updated, so measurements might be off"
7678         free_min_max
7679         DIFF2=$((MAXV - MINV))
7680         echo "free space delta: orig $DIFF final $DIFF2"
7681         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7682         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7683         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7684         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7685         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7686         if [[ $DIFF -gt 0 ]]; then
7687                 FILL=$((DIFF2 * 100 / DIFF - 100))
7688                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7689         fi
7690
7691         # Figure out which files were written where
7692         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7693                awk '/'$MINI1': / {print $2; exit}')
7694         echo $UUID
7695         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7696         echo "$MINC files created on smaller OST $MINI1"
7697         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7698                awk '/'$MAXI1': / {print $2; exit}')
7699         echo $UUID
7700         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7701         echo "$MAXC files created on larger OST $MAXI1"
7702         if [[ $MINC -gt 0 ]]; then
7703                 FILL=$((MAXC * 100 / MINC - 100))
7704                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7705         fi
7706         [[ $MAXC -gt $MINC ]] ||
7707                 error_ignore LU-9 "stripe QOS didn't balance free space"
7708         simple_cleanup_common
7709 }
7710 run_test 116a "stripe QOS: free space balance ==================="
7711
7712 test_116b() { # LU-2093
7713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7714         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7715
7716 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7717         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7718                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7719         [ -z "$old_rr" ] && skip "no QOS" && return 0
7720         do_facet $SINGLEMDS lctl set_param \
7721                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7722         mkdir -p $DIR/$tdir
7723         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7724         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7725         do_facet $SINGLEMDS lctl set_param fail_loc=0
7726         rm -rf $DIR/$tdir
7727         do_facet $SINGLEMDS lctl set_param \
7728                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7729 }
7730 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7731
7732 test_117() # bug 10891
7733 {
7734         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7735         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7736         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7737         lctl set_param fail_loc=0x21e
7738         > $DIR/$tfile || error "truncate failed"
7739         lctl set_param fail_loc=0
7740         echo "Truncate succeeded."
7741         rm -f $DIR/$tfile
7742 }
7743 run_test 117 "verify osd extend =========="
7744
7745 NO_SLOW_RESENDCOUNT=4
7746 export OLD_RESENDCOUNT=""
7747 set_resend_count () {
7748         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7749         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7750         lctl set_param -n $PROC_RESENDCOUNT $1
7751         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7752 }
7753
7754 # for reduce test_118* time (b=14842)
7755 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7756
7757 # Reset async IO behavior after error case
7758 reset_async() {
7759         FILE=$DIR/reset_async
7760
7761         # Ensure all OSCs are cleared
7762         $SETSTRIPE -c -1 $FILE
7763         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7764         sync
7765         rm $FILE
7766 }
7767
7768 test_118a() #bug 11710
7769 {
7770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7771         reset_async
7772
7773         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7774         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7775         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7776
7777         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7778                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7779                 return 1;
7780         fi
7781         rm -f $DIR/$tfile
7782 }
7783 run_test 118a "verify O_SYNC works =========="
7784
7785 test_118b()
7786 {
7787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7788         remote_ost_nodsh && skip "remote OST with nodsh" && return
7789
7790         reset_async
7791
7792         #define OBD_FAIL_SRV_ENOENT 0x217
7793         set_nodes_failloc "$(osts_nodes)" 0x217
7794         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7795         RC=$?
7796         set_nodes_failloc "$(osts_nodes)" 0
7797         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7798         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7799                     grep -c writeback)
7800
7801         if [[ $RC -eq 0 ]]; then
7802                 error "Must return error due to dropped pages, rc=$RC"
7803                 return 1;
7804         fi
7805
7806         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7807                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7808                 return 1;
7809         fi
7810
7811         echo "Dirty pages not leaked on ENOENT"
7812
7813         # Due to the above error the OSC will issue all RPCs syncronously
7814         # until a subsequent RPC completes successfully without error.
7815         $MULTIOP $DIR/$tfile Ow4096yc
7816         rm -f $DIR/$tfile
7817
7818         return 0
7819 }
7820 run_test 118b "Reclaim dirty pages on fatal error =========="
7821
7822 test_118c()
7823 {
7824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7825
7826         # for 118c, restore the original resend count, LU-1940
7827         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7828                                 set_resend_count $OLD_RESENDCOUNT
7829         remote_ost_nodsh && skip "remote OST with nodsh" && return
7830
7831         reset_async
7832
7833         #define OBD_FAIL_OST_EROFS               0x216
7834         set_nodes_failloc "$(osts_nodes)" 0x216
7835
7836         # multiop should block due to fsync until pages are written
7837         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7838         MULTIPID=$!
7839         sleep 1
7840
7841         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7842                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7843         fi
7844
7845         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7846                     grep -c writeback)
7847         if [[ $WRITEBACK -eq 0 ]]; then
7848                 error "No page in writeback, writeback=$WRITEBACK"
7849         fi
7850
7851         set_nodes_failloc "$(osts_nodes)" 0
7852         wait $MULTIPID
7853         RC=$?
7854         if [[ $RC -ne 0 ]]; then
7855                 error "Multiop fsync failed, rc=$RC"
7856         fi
7857
7858         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7859         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7860                     grep -c writeback)
7861         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7862                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7863         fi
7864
7865         rm -f $DIR/$tfile
7866         echo "Dirty pages flushed via fsync on EROFS"
7867         return 0
7868 }
7869 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7870
7871 # continue to use small resend count to reduce test_118* time (b=14842)
7872 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7873
7874 test_118d()
7875 {
7876         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7877         remote_ost_nodsh && skip "remote OST with nodsh" && return
7878
7879         reset_async
7880
7881         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7882         set_nodes_failloc "$(osts_nodes)" 0x214
7883         # multiop should block due to fsync until pages are written
7884         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7885         MULTIPID=$!
7886         sleep 1
7887
7888         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7889                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7890         fi
7891
7892         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7893                     grep -c writeback)
7894         if [[ $WRITEBACK -eq 0 ]]; then
7895                 error "No page in writeback, writeback=$WRITEBACK"
7896         fi
7897
7898         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7899         set_nodes_failloc "$(osts_nodes)" 0
7900
7901         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7902         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7903                     grep -c writeback)
7904         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7905                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7906         fi
7907
7908         rm -f $DIR/$tfile
7909         echo "Dirty pages gaurenteed flushed via fsync"
7910         return 0
7911 }
7912 run_test 118d "Fsync validation inject a delay of the bulk =========="
7913
7914 test_118f() {
7915         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7916         reset_async
7917
7918         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7919         lctl set_param fail_loc=0x8000040a
7920
7921         # Should simulate EINVAL error which is fatal
7922         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7923         RC=$?
7924         if [[ $RC -eq 0 ]]; then
7925                 error "Must return error due to dropped pages, rc=$RC"
7926         fi
7927
7928         lctl set_param fail_loc=0x0
7929
7930         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7931         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7932         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7933                     grep -c writeback)
7934         if [[ $LOCKED -ne 0 ]]; then
7935                 error "Locked pages remain in cache, locked=$LOCKED"
7936         fi
7937
7938         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7939                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7940         fi
7941
7942         rm -f $DIR/$tfile
7943         echo "No pages locked after fsync"
7944
7945         reset_async
7946         return 0
7947 }
7948 run_test 118f "Simulate unrecoverable OSC side error =========="
7949
7950 test_118g() {
7951         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7952         reset_async
7953
7954         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7955         lctl set_param fail_loc=0x406
7956
7957         # simulate local -ENOMEM
7958         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7959         RC=$?
7960
7961         lctl set_param fail_loc=0
7962         if [[ $RC -eq 0 ]]; then
7963                 error "Must return error due to dropped pages, rc=$RC"
7964         fi
7965
7966         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7967         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7968         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7969                         grep -c writeback)
7970         if [[ $LOCKED -ne 0 ]]; then
7971                 error "Locked pages remain in cache, locked=$LOCKED"
7972         fi
7973
7974         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7975                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7976         fi
7977
7978         rm -f $DIR/$tfile
7979         echo "No pages locked after fsync"
7980
7981         reset_async
7982         return 0
7983 }
7984 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7985
7986 test_118h() {
7987         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7988         remote_ost_nodsh && skip "remote OST with nodsh" && return
7989
7990         reset_async
7991
7992         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7993         set_nodes_failloc "$(osts_nodes)" 0x20e
7994         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7995         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7996         RC=$?
7997
7998         set_nodes_failloc "$(osts_nodes)" 0
7999         if [[ $RC -eq 0 ]]; then
8000                 error "Must return error due to dropped pages, rc=$RC"
8001         fi
8002
8003         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8004         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8005         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8006                     grep -c writeback)
8007         if [[ $LOCKED -ne 0 ]]; then
8008                 error "Locked pages remain in cache, locked=$LOCKED"
8009         fi
8010
8011         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8012                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8013         fi
8014
8015         rm -f $DIR/$tfile
8016         echo "No pages locked after fsync"
8017
8018         return 0
8019 }
8020 run_test 118h "Verify timeout in handling recoverables errors  =========="
8021
8022 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8023
8024 test_118i() {
8025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8026         remote_ost_nodsh && skip "remote OST with nodsh" && return
8027
8028         reset_async
8029
8030         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8031         set_nodes_failloc "$(osts_nodes)" 0x20e
8032
8033         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8034         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8035         PID=$!
8036         sleep 5
8037         set_nodes_failloc "$(osts_nodes)" 0
8038
8039         wait $PID
8040         RC=$?
8041         if [[ $RC -ne 0 ]]; then
8042                 error "got error, but should be not, rc=$RC"
8043         fi
8044
8045         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8046         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8047         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8048         if [[ $LOCKED -ne 0 ]]; then
8049                 error "Locked pages remain in cache, locked=$LOCKED"
8050         fi
8051
8052         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8053                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8054         fi
8055
8056         rm -f $DIR/$tfile
8057         echo "No pages locked after fsync"
8058
8059         return 0
8060 }
8061 run_test 118i "Fix error before timeout in recoverable error  =========="
8062
8063 [ "$SLOW" = "no" ] && set_resend_count 4
8064
8065 test_118j() {
8066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8067         remote_ost_nodsh && skip "remote OST with nodsh" && return
8068
8069         reset_async
8070
8071         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8072         set_nodes_failloc "$(osts_nodes)" 0x220
8073
8074         # return -EIO from OST
8075         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8076         RC=$?
8077         set_nodes_failloc "$(osts_nodes)" 0x0
8078         if [[ $RC -eq 0 ]]; then
8079                 error "Must return error due to dropped pages, rc=$RC"
8080         fi
8081
8082         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8083         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8084         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8085         if [[ $LOCKED -ne 0 ]]; then
8086                 error "Locked pages remain in cache, locked=$LOCKED"
8087         fi
8088
8089         # in recoverable error on OST we want resend and stay until it finished
8090         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8091                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8092         fi
8093
8094         rm -f $DIR/$tfile
8095         echo "No pages locked after fsync"
8096
8097         return 0
8098 }
8099 run_test 118j "Simulate unrecoverable OST side error =========="
8100
8101 test_118k()
8102 {
8103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8104         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8105
8106         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8107         set_nodes_failloc "$(osts_nodes)" 0x20e
8108         test_mkdir -p $DIR/$tdir
8109
8110         for ((i=0;i<10;i++)); do
8111                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8112                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8113                 SLEEPPID=$!
8114                 sleep 0.500s
8115                 kill $SLEEPPID
8116                 wait $SLEEPPID
8117         done
8118
8119         set_nodes_failloc "$(osts_nodes)" 0
8120         rm -rf $DIR/$tdir
8121 }
8122 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8123
8124 test_118l()
8125 {
8126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8127         # LU-646
8128         test_mkdir -p $DIR/$tdir
8129         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8130         rm -rf $DIR/$tdir
8131 }
8132 run_test 118l "fsync dir ========="
8133
8134 test_118m() # LU-3066
8135 {
8136         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8137         test_mkdir -p $DIR/$tdir
8138         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8139         rm -rf $DIR/$tdir
8140 }
8141 run_test 118m "fdatasync dir ========="
8142
8143 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8144
8145 test_119a() # bug 11737
8146 {
8147         BSIZE=$((512 * 1024))
8148         directio write $DIR/$tfile 0 1 $BSIZE
8149         # We ask to read two blocks, which is more than a file size.
8150         # directio will indicate an error when requested and actual
8151         # sizes aren't equeal (a normal situation in this case) and
8152         # print actual read amount.
8153         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8154         if [ "$NOB" != "$BSIZE" ]; then
8155                 error "read $NOB bytes instead of $BSIZE"
8156         fi
8157         rm -f $DIR/$tfile
8158 }
8159 run_test 119a "Short directIO read must return actual read amount"
8160
8161 test_119b() # bug 11737
8162 {
8163         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8164
8165         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8166         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8167         sync
8168         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8169                 error "direct read failed"
8170         rm -f $DIR/$tfile
8171 }
8172 run_test 119b "Sparse directIO read must return actual read amount"
8173
8174 test_119c() # bug 13099
8175 {
8176         BSIZE=1048576
8177         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8178         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8179         rm -f $DIR/$tfile
8180 }
8181 run_test 119c "Testing for direct read hitting hole"
8182
8183 test_119d() # bug 15950
8184 {
8185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8186         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8187         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8188         BSIZE=1048576
8189         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8190         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8191         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8192         lctl set_param fail_loc=0x40d
8193         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8194         pid_dio=$!
8195         sleep 1
8196         cat $DIR/$tfile > /dev/null &
8197         lctl set_param fail_loc=0
8198         pid_reads=$!
8199         wait $pid_dio
8200         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8201         sleep 2
8202         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8203         error "the read rpcs have not completed in 2s"
8204         rm -f $DIR/$tfile
8205         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8206 }
8207 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8208
8209 test_120a() {
8210         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8211         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8212         test_mkdir -p $DIR/$tdir
8213         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8214                skip "no early lock cancel on server" && return 0
8215
8216         lru_resize_disable mdc
8217         lru_resize_disable osc
8218         cancel_lru_locks mdc
8219         # asynchronous object destroy at MDT could cause bl ast to client
8220         cancel_lru_locks osc
8221
8222         stat $DIR/$tdir > /dev/null
8223         can1=$(do_facet $SINGLEMDS \
8224                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8225                awk '/ldlm_cancel/ {print $2}')
8226         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8227                awk '/ldlm_bl_callback/ {print $2}')
8228         test_mkdir -c1 $DIR/$tdir/d1
8229         can2=$(do_facet $SINGLEMDS \
8230                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8231                awk '/ldlm_cancel/ {print $2}')
8232         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8233                awk '/ldlm_bl_callback/ {print $2}')
8234         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8235         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8236         lru_resize_enable mdc
8237         lru_resize_enable osc
8238 }
8239 run_test 120a "Early Lock Cancel: mkdir test"
8240
8241 test_120b() {
8242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8243         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8244         test_mkdir $DIR/$tdir
8245         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8246                skip "no early lock cancel on server" && return 0
8247         lru_resize_disable mdc
8248         lru_resize_disable osc
8249         cancel_lru_locks mdc
8250         stat $DIR/$tdir > /dev/null
8251         can1=$(do_facet $SINGLEMDS \
8252                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8253                awk '/ldlm_cancel/ {print $2}')
8254         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8255                awk '/ldlm_bl_callback/ {print $2}')
8256         touch $DIR/$tdir/f1
8257         can2=$(do_facet $SINGLEMDS \
8258                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8259                awk '/ldlm_cancel/ {print $2}')
8260         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8261                awk '/ldlm_bl_callback/ {print $2}')
8262         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8263         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8264         lru_resize_enable mdc
8265         lru_resize_enable osc
8266 }
8267 run_test 120b "Early Lock Cancel: create test"
8268
8269 test_120c() {
8270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8271         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8272         test_mkdir -c1 $DIR/$tdir
8273         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8274                skip "no early lock cancel on server" && return 0
8275         lru_resize_disable mdc
8276         lru_resize_disable osc
8277         test_mkdir -p -c1 $DIR/$tdir/d1
8278         test_mkdir -p -c1 $DIR/$tdir/d2
8279         touch $DIR/$tdir/d1/f1
8280         cancel_lru_locks mdc
8281         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8282         can1=$(do_facet $SINGLEMDS \
8283                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8284                awk '/ldlm_cancel/ {print $2}')
8285         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8286                awk '/ldlm_bl_callback/ {print $2}')
8287         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8288         can2=$(do_facet $SINGLEMDS \
8289                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8290                awk '/ldlm_cancel/ {print $2}')
8291         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8292                awk '/ldlm_bl_callback/ {print $2}')
8293         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8294         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8295         lru_resize_enable mdc
8296         lru_resize_enable osc
8297 }
8298 run_test 120c "Early Lock Cancel: link test"
8299
8300 test_120d() {
8301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8302         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8303         test_mkdir -p -c1 $DIR/$tdir
8304         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8305                skip "no early lock cancel on server" && return 0
8306         lru_resize_disable mdc
8307         lru_resize_disable osc
8308         touch $DIR/$tdir
8309         cancel_lru_locks mdc
8310         stat $DIR/$tdir > /dev/null
8311         can1=$(do_facet $SINGLEMDS \
8312                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8313                awk '/ldlm_cancel/ {print $2}')
8314         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8315                awk '/ldlm_bl_callback/ {print $2}')
8316         chmod a+x $DIR/$tdir
8317         can2=$(do_facet $SINGLEMDS \
8318                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8319                awk '/ldlm_cancel/ {print $2}')
8320         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8321                awk '/ldlm_bl_callback/ {print $2}')
8322         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8323         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8324         lru_resize_enable mdc
8325         lru_resize_enable osc
8326 }
8327 run_test 120d "Early Lock Cancel: setattr test"
8328
8329 test_120e() {
8330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8331         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8332                 skip "no early lock cancel on server" && return 0
8333         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8334         local dlmtrace_set=false
8335
8336         test_mkdir -p -c1 $DIR/$tdir
8337         lru_resize_disable mdc
8338         lru_resize_disable osc
8339         ! $LCTL get_param debug | grep -q dlmtrace &&
8340                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8341         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8342         cancel_lru_locks mdc
8343         cancel_lru_locks osc
8344         dd if=$DIR/$tdir/f1 of=/dev/null
8345         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8346         # XXX client can not do early lock cancel of OST lock
8347         # during unlink (LU-4206), so cancel osc lock now.
8348         sleep 2
8349         cancel_lru_locks osc
8350         can1=$(do_facet $SINGLEMDS \
8351                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8352                awk '/ldlm_cancel/ {print $2}')
8353         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8354                awk '/ldlm_bl_callback/ {print $2}')
8355         unlink $DIR/$tdir/f1
8356         sleep 5
8357         can2=$(do_facet $SINGLEMDS \
8358                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8359                awk '/ldlm_cancel/ {print $2}')
8360         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8361                awk '/ldlm_bl_callback/ {print $2}')
8362         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8363                 $LCTL dk $TMP/cancel.debug.txt
8364         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8365                 $LCTL dk $TMP/blocking.debug.txt
8366         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8367         lru_resize_enable mdc
8368         lru_resize_enable osc
8369 }
8370 run_test 120e "Early Lock Cancel: unlink test"
8371
8372 test_120f() {
8373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8374         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8375                skip "no early lock cancel on server" && return 0
8376         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8377         test_mkdir -p -c1 $DIR/$tdir
8378         lru_resize_disable mdc
8379         lru_resize_disable osc
8380         test_mkdir -p -c1 $DIR/$tdir/d1
8381         test_mkdir -p -c1 $DIR/$tdir/d2
8382         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8383         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8384         cancel_lru_locks mdc
8385         cancel_lru_locks osc
8386         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8387         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8388         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8389         # XXX client can not do early lock cancel of OST lock
8390         # during rename (LU-4206), so cancel osc lock now.
8391         sleep 2
8392         cancel_lru_locks osc
8393         can1=$(do_facet $SINGLEMDS \
8394                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8395                awk '/ldlm_cancel/ {print $2}')
8396         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8397                awk '/ldlm_bl_callback/ {print $2}')
8398         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8399         sleep 5
8400         can2=$(do_facet $SINGLEMDS \
8401                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8402                awk '/ldlm_cancel/ {print $2}')
8403         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8404                awk '/ldlm_bl_callback/ {print $2}')
8405         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8406         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8407         lru_resize_enable mdc
8408         lru_resize_enable osc
8409 }
8410 run_test 120f "Early Lock Cancel: rename test"
8411
8412 test_120g() {
8413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8414         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8415                skip "no early lock cancel on server" && return 0
8416         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8417         lru_resize_disable mdc
8418         lru_resize_disable osc
8419         count=10000
8420         echo create $count files
8421         test_mkdir -p $DIR/$tdir
8422         cancel_lru_locks mdc
8423         cancel_lru_locks osc
8424         t0=`date +%s`
8425
8426         can0=$(do_facet $SINGLEMDS \
8427                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8428                awk '/ldlm_cancel/ {print $2}')
8429         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8430                awk '/ldlm_bl_callback/ {print $2}')
8431         createmany -o $DIR/$tdir/f $count
8432         sync
8433         can1=$(do_facet $SINGLEMDS \
8434                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8435                awk '/ldlm_cancel/ {print $2}')
8436         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8437                awk '/ldlm_bl_callback/ {print $2}')
8438         t1=$(date +%s)
8439         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8440         echo rm $count files
8441         rm -r $DIR/$tdir
8442         sync
8443         can2=$(do_facet $SINGLEMDS \
8444                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8445                awk '/ldlm_cancel/ {print $2}')
8446         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8447                awk '/ldlm_bl_callback/ {print $2}')
8448         t2=$(date +%s)
8449         echo total: $count removes in $((t2-t1))
8450         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8451         sleep 2
8452         # wait for commitment of removal
8453         lru_resize_enable mdc
8454         lru_resize_enable osc
8455 }
8456 run_test 120g "Early Lock Cancel: performance test"
8457
8458 test_121() { #bug #10589
8459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8460         rm -rf $DIR/$tfile
8461         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8462 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8463         lctl set_param fail_loc=0x310
8464         cancel_lru_locks osc > /dev/null
8465         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8466         lctl set_param fail_loc=0
8467         [[ $reads -eq $writes ]] ||
8468                 error "read $reads blocks, must be $writes blocks"
8469 }
8470 run_test 121 "read cancel race ========="
8471
8472 test_123a() { # was test 123, statahead(bug 11401)
8473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8474         SLOWOK=0
8475         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8476             log "testing on UP system. Performance may be not as good as expected."
8477                         SLOWOK=1
8478         fi
8479
8480         rm -rf $DIR/$tdir
8481         test_mkdir -p $DIR/$tdir
8482         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8483         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8484         MULT=10
8485         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8486                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8487
8488                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8489                 lctl set_param -n llite.*.statahead_max 0
8490                 lctl get_param llite.*.statahead_max
8491                 cancel_lru_locks mdc
8492                 cancel_lru_locks osc
8493                 stime=`date +%s`
8494                 time ls -l $DIR/$tdir | wc -l
8495                 etime=`date +%s`
8496                 delta=$((etime - stime))
8497                 log "ls $i files without statahead: $delta sec"
8498                 lctl set_param llite.*.statahead_max=$max
8499
8500                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8501                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8502                 cancel_lru_locks mdc
8503                 cancel_lru_locks osc
8504                 stime=`date +%s`
8505                 time ls -l $DIR/$tdir | wc -l
8506                 etime=`date +%s`
8507                 delta_sa=$((etime - stime))
8508                 log "ls $i files with statahead: $delta_sa sec"
8509                 lctl get_param -n llite.*.statahead_stats
8510                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8511
8512                 [[ $swrong -lt $ewrong ]] &&
8513                         log "statahead was stopped, maybe too many locks held!"
8514                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8515
8516                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8517                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8518                     lctl set_param -n llite.*.statahead_max 0
8519                     lctl get_param llite.*.statahead_max
8520                     cancel_lru_locks mdc
8521                     cancel_lru_locks osc
8522                     stime=`date +%s`
8523                     time ls -l $DIR/$tdir | wc -l
8524                     etime=`date +%s`
8525                     delta=$((etime - stime))
8526                     log "ls $i files again without statahead: $delta sec"
8527                     lctl set_param llite.*.statahead_max=$max
8528                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8529                         if [  $SLOWOK -eq 0 ]; then
8530                                 error "ls $i files is slower with statahead!"
8531                         else
8532                                 log "ls $i files is slower with statahead!"
8533                         fi
8534                         break
8535                     fi
8536                 fi
8537
8538                 [ $delta -gt 20 ] && break
8539                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8540                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8541         done
8542         log "ls done"
8543
8544         stime=`date +%s`
8545         rm -r $DIR/$tdir
8546         sync
8547         etime=`date +%s`
8548         delta=$((etime - stime))
8549         log "rm -r $DIR/$tdir/: $delta seconds"
8550         log "rm done"
8551         lctl get_param -n llite.*.statahead_stats
8552 }
8553 run_test 123a "verify statahead work"
8554
8555 test_123b () { # statahead(bug 15027)
8556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8557         test_mkdir -p $DIR/$tdir
8558         createmany -o $DIR/$tdir/$tfile-%d 1000
8559
8560         cancel_lru_locks mdc
8561         cancel_lru_locks osc
8562
8563 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8564         lctl set_param fail_loc=0x80000803
8565         ls -lR $DIR/$tdir > /dev/null
8566         log "ls done"
8567         lctl set_param fail_loc=0x0
8568         lctl get_param -n llite.*.statahead_stats
8569         rm -r $DIR/$tdir
8570         sync
8571
8572 }
8573 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8574
8575 test_124a() {
8576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8577         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8578                 skip "no lru resize on server" && return 0
8579         local NR=2000
8580         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8581
8582         log "create $NR files at $DIR/$tdir"
8583         createmany -o $DIR/$tdir/f $NR ||
8584                 error "failed to create $NR files in $DIR/$tdir"
8585
8586         cancel_lru_locks mdc
8587         ls -l $DIR/$tdir > /dev/null
8588
8589         local NSDIR=""
8590         local LRU_SIZE=0
8591         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8592                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8593                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8594                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8595                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8596                         log "NSDIR=$NSDIR"
8597                         log "NS=$(basename $NSDIR)"
8598                         break
8599                 fi
8600         done
8601
8602         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8603                 skip "Not enough cached locks created!"
8604                 return 0
8605         fi
8606         log "LRU=$LRU_SIZE"
8607
8608         local SLEEP=30
8609
8610         # We know that lru resize allows one client to hold $LIMIT locks
8611         # for 10h. After that locks begin to be killed by client.
8612         local MAX_HRS=10
8613         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8614         log "LIMIT=$LIMIT"
8615         if [ $LIMIT -lt $LRU_SIZE ]; then
8616             skip "Limit is too small $LIMIT"
8617             return 0
8618         fi
8619
8620         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8621         # killing locks. Some time was spent for creating locks. This means
8622         # that up to the moment of sleep finish we must have killed some of
8623         # them (10-100 locks). This depends on how fast ther were created.
8624         # Many of them were touched in almost the same moment and thus will
8625         # be killed in groups.
8626         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8627
8628         # Use $LRU_SIZE_B here to take into account real number of locks
8629         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8630         local LRU_SIZE_B=$LRU_SIZE
8631         log "LVF=$LVF"
8632         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8633         log "OLD_LVF=$OLD_LVF"
8634         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8635
8636         # Let's make sure that we really have some margin. Client checks
8637         # cached locks every 10 sec.
8638         SLEEP=$((SLEEP+20))
8639         log "Sleep ${SLEEP} sec"
8640         local SEC=0
8641         while ((SEC<$SLEEP)); do
8642                 echo -n "..."
8643                 sleep 5
8644                 SEC=$((SEC+5))
8645                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8646                 echo -n "$LRU_SIZE"
8647         done
8648         echo ""
8649         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8650         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8651
8652         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8653                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8654                 unlinkmany $DIR/$tdir/f $NR
8655                 return
8656         }
8657
8658         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8659         log "unlink $NR files at $DIR/$tdir"
8660         unlinkmany $DIR/$tdir/f $NR
8661 }
8662 run_test 124a "lru resize ======================================="
8663
8664 get_max_pool_limit()
8665 {
8666         local limit=$($LCTL get_param \
8667                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8668         local max=0
8669         for l in $limit; do
8670                 if [[ $l -gt $max ]]; then
8671                         max=$l
8672                 fi
8673         done
8674         echo $max
8675 }
8676
8677 test_124b() {
8678         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8679         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8680                 skip "no lru resize on server" && return 0
8681
8682         LIMIT=$(get_max_pool_limit)
8683
8684         NR=$(($(default_lru_size)*20))
8685         if [[ $NR -gt $LIMIT ]]; then
8686                 log "Limit lock number by $LIMIT locks"
8687                 NR=$LIMIT
8688         fi
8689
8690         IFree=$(mdsrate_inodes_available)
8691         if [ $IFree -lt $NR ]; then
8692                 log "Limit lock number by $IFree inodes"
8693                 NR=$IFree
8694         fi
8695
8696         lru_resize_disable mdc
8697         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8698                 error "failed to create $DIR/$tdir/disable_lru_resize"
8699
8700         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8701         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8702         cancel_lru_locks mdc
8703         stime=`date +%s`
8704         PID=""
8705         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8706         PID="$PID $!"
8707         sleep 2
8708         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8709         PID="$PID $!"
8710         sleep 2
8711         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8712         PID="$PID $!"
8713         wait $PID
8714         etime=`date +%s`
8715         nolruresize_delta=$((etime-stime))
8716         log "ls -la time: $nolruresize_delta seconds"
8717         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8718         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8719
8720         lru_resize_enable mdc
8721         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8722                 error "failed to create $DIR/$tdir/enable_lru_resize"
8723
8724         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8725         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8726         cancel_lru_locks mdc
8727         stime=`date +%s`
8728         PID=""
8729         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8730         PID="$PID $!"
8731         sleep 2
8732         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8733         PID="$PID $!"
8734         sleep 2
8735         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8736         PID="$PID $!"
8737         wait $PID
8738         etime=`date +%s`
8739         lruresize_delta=$((etime-stime))
8740         log "ls -la time: $lruresize_delta seconds"
8741         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8742
8743         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8744                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8745         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8746                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8747         else
8748                 log "lru resize performs the same with no lru resize"
8749         fi
8750         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8751 }
8752 run_test 124b "lru resize (performance test) ======================="
8753
8754 test_124c() {
8755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8756         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8757                 skip "no lru resize on server" && return 0
8758
8759         # cache ununsed locks on client
8760         local nr=100
8761         cancel_lru_locks mdc
8762         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8763         createmany -o $DIR/$tdir/f $nr ||
8764                 error "failed to create $nr files in $DIR/$tdir"
8765         ls -l $DIR/$tdir > /dev/null
8766
8767         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8768         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8769         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8770         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8771         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8772
8773         # set lru_max_age to 1 sec
8774         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8775         echo "sleep $((recalc_p * 2)) seconds..."
8776         sleep $((recalc_p * 2))
8777
8778         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8779         # restore lru_max_age
8780         $LCTL set_param -n $nsdir.lru_max_age $max_age
8781         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8782         unlinkmany $DIR/$tdir/f $nr
8783 }
8784 run_test 124c "LRUR cancel very aged locks"
8785
8786 test_125() { # 13358
8787         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8788         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8789         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8790         test_mkdir -p $DIR/d125 || error "mkdir failed"
8791         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8792         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8793         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8794 }
8795 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8796
8797 test_126() { # bug 12829/13455
8798         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8799         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8800         $GSS && skip "must run as gss disabled" && return
8801
8802         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8803         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8804         rm -f $DIR/$tfile
8805         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8806 }
8807 run_test 126 "check that the fsgid provided by the client is taken into account"
8808
8809 test_127a() { # bug 15521
8810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8811         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8812         $LCTL set_param osc.*.stats=0
8813         FSIZE=$((2048 * 1024))
8814         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8815         cancel_lru_locks osc
8816         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8817
8818         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8819         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8820                 echo "got $COUNT $NAME"
8821                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8822                 eval $NAME=$COUNT || error "Wrong proc format"
8823
8824                 case $NAME in
8825                         read_bytes|write_bytes)
8826                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8827                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8828                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8829                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8830                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8831                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8832                                 error "sumsquare is too small: $SUMSQ"
8833                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8834                                 error "sumsquare is too big: $SUMSQ"
8835                         ;;
8836                         *) ;;
8837                 esac
8838         done < $DIR/${tfile}.tmp
8839
8840         #check that we actually got some stats
8841         [ "$read_bytes" ] || error "Missing read_bytes stats"
8842         [ "$write_bytes" ] || error "Missing write_bytes stats"
8843         [ "$read_bytes" != 0 ] || error "no read done"
8844         [ "$write_bytes" != 0 ] || error "no write done"
8845 }
8846 run_test 127a "verify the client stats are sane"
8847
8848 test_127b() { # bug LU-333
8849         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8850         $LCTL set_param llite.*.stats=0
8851         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8852         # perform 2 reads and writes so MAX is different from SUM.
8853         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8854         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8855         cancel_lru_locks osc
8856         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8857         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8858
8859         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8860         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8861                 echo "got $COUNT $NAME"
8862                 eval $NAME=$COUNT || error "Wrong proc format"
8863
8864         case $NAME in
8865                 read_bytes)
8866                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8867                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8868                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8869                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8870                         ;;
8871                 write_bytes)
8872                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8873                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8874                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8875                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8876                         ;;
8877                         *) ;;
8878                 esac
8879         done < $TMP/${tfile}.tmp
8880
8881         #check that we actually got some stats
8882         [ "$read_bytes" ] || error "Missing read_bytes stats"
8883         [ "$write_bytes" ] || error "Missing write_bytes stats"
8884         [ "$read_bytes" != 0 ] || error "no read done"
8885         [ "$write_bytes" != 0 ] || error "no write done"
8886
8887         rm -f $TMP/${tfile}.tmp
8888 }
8889 run_test 127b "verify the llite client stats are sane"
8890
8891 test_128() { # bug 15212
8892         touch $DIR/$tfile
8893         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8894                 find $DIR/$tfile
8895                 find $DIR/$tfile
8896         EOF
8897
8898         result=$(grep error $TMP/$tfile.log)
8899         rm -f $DIR/$tfile $TMP/$tfile.log
8900         [ -z "$result" ] ||
8901                 error "consecutive find's under interactive lfs failed"
8902 }
8903 run_test 128 "interactive lfs for 2 consecutive find's"
8904
8905 set_dir_limits () {
8906         local mntdev
8907         local canondev
8908         local node
8909
8910         local LDPROC=/proc/fs/ldiskfs
8911         local facets=$(get_facets MDS)
8912
8913         for facet in ${facets//,/ }; do
8914                 canondev=$(ldiskfs_canon \
8915                            *.$(convert_facet2label $facet).mntdev $facet)
8916                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8917                                                 LDPROC=/sys/fs/ldiskfs
8918                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8919                 do_facet $facet "test -e $LDPROC/$canondev/warning_dir_size" ||
8920                                                 LDPROC=/sys/fs/ldiskfs
8921                 do_facet $facet "echo $2 >$LDPROC/$canondev/warning_dir_size"
8922         done
8923 }
8924
8925 check_mds_dmesg() {
8926         local facets=$(get_facets MDS)
8927         for facet in ${facets//,/ }; do
8928                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
8929         done
8930         return 1
8931 }
8932
8933 test_129() {
8934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8935         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8936                 skip "Only applicable to ldiskfs-based MDTs"
8937                 return
8938         fi
8939         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8940         local ENOSPC=28
8941         local EFBIG=27
8942         local has_warning=0
8943
8944         rm -rf $DIR/$tdir
8945         mkdir -p $DIR/$tdir
8946
8947         # block size of mds1
8948         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8949         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8950         local MAX=$((MDSBLOCKSIZE * 5))
8951         set_dir_limits $MAX $MAX
8952         local I=$(stat -c%s "$DIR/$tdir")
8953         local J=0
8954         while [[ $I -le $MAX ]]; do
8955                 $MULTIOP $DIR/$tdir/$J Oc
8956                 rc=$?
8957                 if [ $has_warning -eq 0 ]; then
8958                         check_mds_dmesg '"is approaching"' &&
8959                                 has_warning=1
8960                 fi
8961                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8962                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8963                 #and EFBIG for previous versions
8964                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8965                         set_dir_limits 0 0
8966                         echo "return code $rc received as expected"
8967
8968                         createmany -o $DIR/$tdir/$J_file_ 1000 ||
8969                                 error_exit "create failed w/o dir size limit"
8970
8971                         check_mds_dmesg '"has reached"' ||
8972                                 error_exit "has reached message should be output"
8973
8974                         [ $has_warning -eq 0 ] &&
8975                                 error_exit "warning message should be output"
8976
8977                         I=$(stat -c%s "$DIR/$tdir")
8978
8979                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8980                                         $(version_code 2.4.51) ]
8981                         then
8982                                 [[ $I -eq $MAX ]] && return 0
8983                         else
8984                                 [[ $I -gt $MAX ]] && return 0
8985                         fi
8986                         error_exit "current dir size $I, previous limit $MAX"
8987                 elif [ $rc -ne 0 ]; then
8988                         set_dir_limits 0 0
8989                         error_exit "return code $rc received instead of expected " \
8990                                    "$EFBIG or $ENOSPC, files in dir $I"
8991                 fi
8992                 J=$((J+1))
8993                 I=$(stat -c%s "$DIR/$tdir")
8994         done
8995
8996         set_dir_limits 0 0
8997         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8998 }
8999 run_test 129 "test directory size limit ========================"
9000
9001 OLDIFS="$IFS"
9002 cleanup_130() {
9003         trap 0
9004         IFS="$OLDIFS"
9005 }
9006
9007 test_130a() {
9008         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9009         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9010                 return
9011
9012         trap cleanup_130 EXIT RETURN
9013
9014         local fm_file=$DIR/$tfile
9015         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9016         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9017                 error "dd failed for $fm_file"
9018
9019         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9020         filefrag -ves $fm_file
9021         RC=$?
9022         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9023                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9024         [ $RC != 0 ] && error "filefrag $fm_file failed"
9025
9026         filefrag_op=$(filefrag -ve $fm_file |
9027                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9028         lun=$($GETSTRIPE -i $fm_file)
9029
9030         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9031         IFS=$'\n'
9032         tot_len=0
9033         for line in $filefrag_op
9034         do
9035                 frag_lun=`echo $line | cut -d: -f5`
9036                 ext_len=`echo $line | cut -d: -f4`
9037                 if (( $frag_lun != $lun )); then
9038                         cleanup_130
9039                         error "FIEMAP on 1-stripe file($fm_file) failed"
9040                         return
9041                 fi
9042                 (( tot_len += ext_len ))
9043         done
9044
9045         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9046                 cleanup_130
9047                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9048                 return
9049         fi
9050
9051         cleanup_130
9052
9053         echo "FIEMAP on single striped file succeeded"
9054 }
9055 run_test 130a "FIEMAP (1-stripe file)"
9056
9057 test_130b() {
9058         [ "$OSTCOUNT" -lt "2" ] &&
9059                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
9060
9061         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9062         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9063                 return
9064
9065         trap cleanup_130 EXIT RETURN
9066
9067         local fm_file=$DIR/$tfile
9068         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9069                         error "setstripe on $fm_file"
9070         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9071                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9072
9073         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9074                 error "dd failed on $fm_file"
9075
9076         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9077         filefrag_op=$(filefrag -ve $fm_file |
9078                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9079
9080         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9081                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9082
9083         IFS=$'\n'
9084         tot_len=0
9085         num_luns=1
9086         for line in $filefrag_op
9087         do
9088                 frag_lun=$(echo $line | cut -d: -f5 |
9089                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9090                 ext_len=$(echo $line | cut -d: -f4)
9091                 if (( $frag_lun != $last_lun )); then
9092                         if (( tot_len != 1024 )); then
9093                                 cleanup_130
9094                                 error "FIEMAP on $fm_file failed; returned " \
9095                                 "len $tot_len for OST $last_lun instead of 1024"
9096                                 return
9097                         else
9098                                 (( num_luns += 1 ))
9099                                 tot_len=0
9100                         fi
9101                 fi
9102                 (( tot_len += ext_len ))
9103                 last_lun=$frag_lun
9104         done
9105         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9106                 cleanup_130
9107                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9108                         "luns or wrong len for OST $last_lun"
9109                 return
9110         fi
9111
9112         cleanup_130
9113
9114         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9115 }
9116 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9117
9118 test_130c() {
9119         [ "$OSTCOUNT" -lt "2" ] &&
9120                 skip_env "skipping FIEMAP on 2-stripe file" && return
9121
9122         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9123         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9124                 return
9125
9126         trap cleanup_130 EXIT RETURN
9127
9128         local fm_file=$DIR/$tfile
9129         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9130         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9131                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9132
9133         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9134                         error "dd failed on $fm_file"
9135
9136         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9137         filefrag_op=$(filefrag -ve $fm_file |
9138                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9139
9140         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9141                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9142
9143         IFS=$'\n'
9144         tot_len=0
9145         num_luns=1
9146         for line in $filefrag_op
9147         do
9148                 frag_lun=$(echo $line | cut -d: -f5 |
9149                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9150                 ext_len=$(echo $line | cut -d: -f4)
9151                 if (( $frag_lun != $last_lun )); then
9152                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9153                         if (( logical != 512 )); then
9154                                 cleanup_130
9155                                 error "FIEMAP on $fm_file failed; returned " \
9156                                 "logical start for lun $logical instead of 512"
9157                                 return
9158                         fi
9159                         if (( tot_len != 512 )); then
9160                                 cleanup_130
9161                                 error "FIEMAP on $fm_file failed; returned " \
9162                                 "len $tot_len for OST $last_lun instead of 1024"
9163                                 return
9164                         else
9165                                 (( num_luns += 1 ))
9166                                 tot_len=0
9167                         fi
9168                 fi
9169                 (( tot_len += ext_len ))
9170                 last_lun=$frag_lun
9171         done
9172         if (( num_luns != 2 || tot_len != 512 )); then
9173                 cleanup_130
9174                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9175                         "luns or wrong len for OST $last_lun"
9176                 return
9177         fi
9178
9179         cleanup_130
9180
9181         echo "FIEMAP on 2-stripe file with hole succeeded"
9182 }
9183 run_test 130c "FIEMAP (2-stripe file with hole)"
9184
9185 test_130d() {
9186         [ "$OSTCOUNT" -lt "3" ] &&
9187                 skip_env "skipping FIEMAP on N-stripe file test" && return
9188
9189         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9190         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9191                 return
9192
9193         trap cleanup_130 EXIT RETURN
9194
9195         local fm_file=$DIR/$tfile
9196         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9197                         error "setstripe on $fm_file"
9198         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9199                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9200
9201         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9202         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9203                 error "dd failed on $fm_file"
9204
9205         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9206         filefrag_op=$(filefrag -ve $fm_file |
9207                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9208
9209         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9210                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9211
9212         IFS=$'\n'
9213         tot_len=0
9214         num_luns=1
9215         for line in $filefrag_op
9216         do
9217                 frag_lun=$(echo $line | cut -d: -f5 |
9218                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9219                 ext_len=$(echo $line | cut -d: -f4)
9220                 if (( $frag_lun != $last_lun )); then
9221                         if (( tot_len != 1024 )); then
9222                                 cleanup_130
9223                                 error "FIEMAP on $fm_file failed; returned " \
9224                                 "len $tot_len for OST $last_lun instead of 1024"
9225                                 return
9226                         else
9227                                 (( num_luns += 1 ))
9228                                 tot_len=0
9229                         fi
9230                 fi
9231                 (( tot_len += ext_len ))
9232                 last_lun=$frag_lun
9233         done
9234         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9235                 cleanup_130
9236                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9237                         "luns or wrong len for OST $last_lun"
9238                 return
9239         fi
9240
9241         cleanup_130
9242
9243         echo "FIEMAP on N-stripe file succeeded"
9244 }
9245 run_test 130d "FIEMAP (N-stripe file)"
9246
9247 test_130e() {
9248         [ "$OSTCOUNT" -lt "2" ] &&
9249                 skip_env "skipping continuation FIEMAP test" && return
9250
9251         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9252         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9253
9254         trap cleanup_130 EXIT RETURN
9255
9256         local fm_file=$DIR/$tfile
9257         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9258         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9259                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9260
9261         NUM_BLKS=512
9262         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9263         for ((i = 0; i < $NUM_BLKS; i++))
9264         do
9265                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9266         done
9267
9268         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9269         filefrag_op=$(filefrag -ve $fm_file |
9270                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9271
9272         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9273                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9274
9275         IFS=$'\n'
9276         tot_len=0
9277         num_luns=1
9278         for line in $filefrag_op
9279         do
9280                 frag_lun=$(echo $line | cut -d: -f5 |
9281                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9282                 ext_len=$(echo $line | cut -d: -f4)
9283                 if (( $frag_lun != $last_lun )); then
9284                         if (( tot_len != $EXPECTED_LEN )); then
9285                                 cleanup_130
9286                                 error "FIEMAP on $fm_file failed; returned " \
9287                                 "len $tot_len for OST $last_lun instead " \
9288                                 "of $EXPECTED_LEN"
9289                                 return
9290                         else
9291                                 (( num_luns += 1 ))
9292                                 tot_len=0
9293                         fi
9294                 fi
9295                 (( tot_len += ext_len ))
9296                 last_lun=$frag_lun
9297         done
9298         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9299                 cleanup_130
9300                 error "FIEMAP on $fm_file failed; returned wrong number " \
9301                         "of luns or wrong len for OST $last_lun"
9302                 return
9303         fi
9304
9305         cleanup_130
9306
9307         echo "FIEMAP with continuation calls succeeded"
9308 }
9309 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9310
9311 # Test for writev/readv
9312 test_131a() {
9313         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9314         error "writev test failed"
9315         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9316         error "readv failed"
9317         rm -f $DIR/$tfile
9318 }
9319 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9320
9321 test_131b() {
9322         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9323         error "append writev test failed"
9324         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9325         error "append writev test failed"
9326         rm -f $DIR/$tfile
9327 }
9328 run_test 131b "test append writev"
9329
9330 test_131c() {
9331         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9332         error "NOT PASS"
9333 }
9334 run_test 131c "test read/write on file w/o objects"
9335
9336 test_131d() {
9337         rwv -f $DIR/$tfile -w -n 1 1572864
9338         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9339         if [ "$NOB" != 1572864 ]; then
9340                 error "Short read filed: read $NOB bytes instead of 1572864"
9341         fi
9342         rm -f $DIR/$tfile
9343 }
9344 run_test 131d "test short read"
9345
9346 test_131e() {
9347         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9348         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9349         error "read hitting hole failed"
9350         rm -f $DIR/$tfile
9351 }
9352 run_test 131e "test read hitting hole"
9353
9354 check_stats() {
9355         local res
9356         local count
9357         case $1 in
9358         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9359                  ;;
9360         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9361                  ;;
9362         *) error "Wrong argument $1" ;;
9363         esac
9364         echo $res
9365         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9366         # if the argument $3 is zero, it means any stat increment is ok.
9367         if [[ $3 -gt 0 ]]; then
9368                 count=$(echo $res | awk '{ print $2 }')
9369                 [[ $count -ne $3 ]] &&
9370                         error "The $2 counter on $1 is wrong - expected $3"
9371         fi
9372 }
9373
9374 test_133a() {
9375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9376         remote_ost_nodsh && skip "remote OST with nodsh" && return
9377         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9378
9379         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9380                 { skip "MDS doesn't support rename stats"; return; }
9381         local testdir=$DIR/${tdir}/stats_testdir
9382         mkdir -p $DIR/${tdir}
9383
9384         # clear stats.
9385         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9386         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9387
9388         # verify mdt stats first.
9389         mkdir ${testdir} || error "mkdir failed"
9390         check_stats $SINGLEMDS "mkdir" 1
9391         touch ${testdir}/${tfile} || error "touch failed"
9392         check_stats $SINGLEMDS "open" 1
9393         check_stats $SINGLEMDS "close" 1
9394         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9395                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9396                 check_stats $SINGLEMDS "mknod" 2
9397         }
9398         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9399         check_stats $SINGLEMDS "unlink" 1
9400         rm -f ${testdir}/${tfile} || error "file remove failed"
9401         check_stats $SINGLEMDS "unlink" 2
9402
9403         # remove working dir and check mdt stats again.
9404         rmdir ${testdir} || error "rmdir failed"
9405         check_stats $SINGLEMDS "rmdir" 1
9406
9407         local testdir1=$DIR/${tdir}/stats_testdir1
9408         mkdir -p ${testdir}
9409         mkdir -p ${testdir1}
9410         touch ${testdir1}/test1
9411         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9412         check_stats $SINGLEMDS "crossdir_rename" 1
9413
9414         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9415         check_stats $SINGLEMDS "samedir_rename" 1
9416
9417         rm -rf $DIR/${tdir}
9418 }
9419 run_test 133a "Verifying MDT stats ========================================"
9420
9421 test_133b() {
9422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9423         remote_ost_nodsh && skip "remote OST with nodsh" && return
9424         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9425         local testdir=$DIR/${tdir}/stats_testdir
9426         mkdir -p ${testdir} || error "mkdir failed"
9427         touch ${testdir}/${tfile} || error "touch failed"
9428         cancel_lru_locks mdc
9429
9430         # clear stats.
9431         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9432         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9433
9434         # extra mdt stats verification.
9435         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9436         check_stats $SINGLEMDS "setattr" 1
9437         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9438         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9439         then            # LU-1740
9440                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9441                 check_stats $SINGLEMDS "getattr" 1
9442         fi
9443         $LFS df || error "lfs failed"
9444         check_stats $SINGLEMDS "statfs" 1
9445
9446         rm -rf $DIR/${tdir}
9447 }
9448 run_test 133b "Verifying extra MDT stats =================================="
9449
9450 test_133c() {
9451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9452         remote_ost_nodsh && skip "remote OST with nodsh" && return
9453         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9454         local testdir=$DIR/${tdir}/stats_testdir
9455         test_mkdir -p ${testdir} || error "mkdir failed"
9456
9457         # verify obdfilter stats.
9458         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9459         sync
9460         cancel_lru_locks osc
9461         wait_delete_completed
9462
9463         # clear stats.
9464         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9465         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9466
9467         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9468         sync
9469         cancel_lru_locks osc
9470         check_stats ost "write" 1
9471
9472         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9473         check_stats ost "read" 1
9474
9475         > ${testdir}/${tfile} || error "truncate failed"
9476         check_stats ost "punch" 1
9477
9478         rm -f ${testdir}/${tfile} || error "file remove failed"
9479         wait_delete_completed
9480         check_stats ost "destroy" 1
9481
9482         rm -rf $DIR/${tdir}
9483 }
9484 run_test 133c "Verifying OST stats ========================================"
9485
9486 order_2() {
9487         local value=$1
9488         local orig=$value
9489         local order=1
9490
9491         while [ $value -ge 2 ]; do
9492                 order=$((order*2))
9493                 value=$((value/2))
9494         done
9495
9496         if [ $orig -gt $order ]; then
9497                 order=$((order*2))
9498         fi
9499         echo $order
9500 }
9501
9502 size_in_KMGT() {
9503     local value=$1
9504     local size=('K' 'M' 'G' 'T');
9505     local i=0
9506     local size_string=$value
9507
9508     while [ $value -ge 1024 ]; do
9509         if [ $i -gt 3 ]; then
9510             #T is the biggest unit we get here, if that is bigger,
9511             #just return XXXT
9512             size_string=${value}T
9513             break
9514         fi
9515         value=$((value >> 10))
9516         if [ $value -lt 1024 ]; then
9517             size_string=${value}${size[$i]}
9518             break
9519         fi
9520         i=$((i + 1))
9521     done
9522
9523     echo $size_string
9524 }
9525
9526 get_rename_size() {
9527     local size=$1
9528     local context=${2:-.}
9529     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9530                 grep -A1 $context |
9531                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9532     echo $sample
9533 }
9534
9535 test_133d() {
9536         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9537         remote_ost_nodsh && skip "remote OST with nodsh" && return
9538         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9539         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9540         { skip "MDS doesn't support rename stats"; return; }
9541
9542         local testdir1=$DIR/${tdir}/stats_testdir1
9543         local testdir2=$DIR/${tdir}/stats_testdir2
9544
9545         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9546
9547         mkdir -p ${testdir1} || error "mkdir failed"
9548         mkdir -p ${testdir2} || error "mkdir failed"
9549
9550         createmany -o $testdir1/test 512 || error "createmany failed"
9551
9552         # check samedir rename size
9553         mv ${testdir1}/test0 ${testdir1}/test_0
9554
9555         local testdir1_size=$(ls -l $DIR/${tdir} |
9556                 awk '/stats_testdir1/ {print $5}')
9557         local testdir2_size=$(ls -l $DIR/${tdir} |
9558                 awk '/stats_testdir2/ {print $5}')
9559
9560         testdir1_size=$(order_2 $testdir1_size)
9561         testdir2_size=$(order_2 $testdir2_size)
9562
9563         testdir1_size=$(size_in_KMGT $testdir1_size)
9564         testdir2_size=$(size_in_KMGT $testdir2_size)
9565
9566         echo "source rename dir size: ${testdir1_size}"
9567         echo "target rename dir size: ${testdir2_size}"
9568
9569         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9570         eval $cmd || error "$cmd failed"
9571         local samedir=$($cmd | grep 'same_dir')
9572         local same_sample=$(get_rename_size $testdir1_size)
9573         [ -z "$samedir" ] && error "samedir_rename_size count error"
9574         [[ $same_sample -eq 1 ]] ||
9575                 error "samedir_rename_size error $same_sample"
9576         echo "Check same dir rename stats success"
9577
9578         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9579
9580         # check crossdir rename size
9581         mv ${testdir1}/test_0 ${testdir2}/test_0
9582
9583         testdir1_size=$(ls -l $DIR/${tdir} |
9584                 awk '/stats_testdir1/ {print $5}')
9585         testdir2_size=$(ls -l $DIR/${tdir} |
9586                 awk '/stats_testdir2/ {print $5}')
9587
9588         testdir1_size=$(order_2 $testdir1_size)
9589         testdir2_size=$(order_2 $testdir2_size)
9590
9591         testdir1_size=$(size_in_KMGT $testdir1_size)
9592         testdir2_size=$(size_in_KMGT $testdir2_size)
9593
9594         echo "source rename dir size: ${testdir1_size}"
9595         echo "target rename dir size: ${testdir2_size}"
9596
9597         eval $cmd || error "$cmd failed"
9598         local crossdir=$($cmd | grep 'crossdir')
9599         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9600         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9601         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9602         [[ $src_sample -eq 1 ]] ||
9603                 error "crossdir_rename_size error $src_sample"
9604         [[ $tgt_sample -eq 1 ]] ||
9605                 error "crossdir_rename_size error $tgt_sample"
9606         echo "Check cross dir rename stats success"
9607         rm -rf $DIR/${tdir}
9608 }
9609 run_test 133d "Verifying rename_stats ========================================"
9610
9611 test_133e() {
9612         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9613         remote_ost_nodsh && skip "remote OST with nodsh" && return
9614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9615         local testdir=$DIR/${tdir}/stats_testdir
9616         local ctr f0 f1 bs=32768 count=42 sum
9617
9618         mkdir -p ${testdir} || error "mkdir failed"
9619
9620         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9621
9622         for ctr in {write,read}_bytes; do
9623                 sync
9624                 cancel_lru_locks osc
9625
9626                 do_facet ost1 $LCTL set_param -n \
9627                         "obdfilter.*.exports.clear=clear"
9628
9629                 if [ $ctr = write_bytes ]; then
9630                         f0=/dev/zero
9631                         f1=${testdir}/${tfile}
9632                 else
9633                         f0=${testdir}/${tfile}
9634                         f1=/dev/null
9635                 fi
9636
9637                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9638                         error "dd failed"
9639                 sync
9640                 cancel_lru_locks osc
9641
9642                 sum=$(do_facet ost1 $LCTL get_param \
9643                         "obdfilter.*.exports.*.stats" |
9644                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9645                                 $1 == ctr { sum += $7 }
9646                                 END { printf("%0.0f", sum) }')
9647
9648                 if ((sum != bs * count)); then
9649                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9650                 fi
9651         done
9652
9653         rm -rf $DIR/${tdir}
9654 }
9655 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9656
9657 proc_dirs=""
9658 for dir in /proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9659            /sys/fs/lustre/ /sys/fs/lnet/ /sys/kernel/debug/lnet/ \
9660            /sys/kernel/debug/lustre/; do
9661         [[ -d $dir ]] && proc_dirs+=" $dir"
9662 done
9663
9664 test_133f() {
9665         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9666         remote_ost_nodsh && skip "remote OST with nodsh" && return
9667         # First without trusting modes.
9668         find $proc_dirs -exec cat '{}' \; &> /dev/null
9669
9670         # Second verifying readability.
9671         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9672
9673         # eventually, this can also be replaced with "lctl get_param -R",
9674         # but not until that option is always available on the server
9675         local facet
9676         for facet in $SINGLEMDS ost1; do
9677                 do_facet $facet find $proc_dirs \
9678                         ! -name req_history \
9679                         -exec cat '{}' \\\; &> /dev/null
9680
9681                 do_facet $facet find $proc_dirs \
9682                         ! -name req_history \
9683                         -type f \
9684                         -exec cat '{}' \\\; &> /dev/null ||
9685                                 error "proc file read failed"
9686         done
9687 }
9688 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9689
9690 test_133g() {
9691         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9692         remote_ost_nodsh && skip "remote OST with nodsh" && return
9693         # Second verifying writability.
9694         find $proc_dirs \
9695                 -type f \
9696                 -not -name force_lbug \
9697                 -not -name changelog_mask \
9698                 -exec badarea_io '{}' \; &> /dev/null ||
9699                 error "find $proc_dirs failed"
9700
9701         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9702                 skip "Too old lustre on MDS" && return
9703
9704         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9705                 skip "Too old lustre on ost1" && return
9706
9707         local facet
9708         for facet in $SINGLEMDS ost1; do
9709                 do_facet $facet find $proc_dirs \
9710                         -type f \
9711                         -not -name force_lbug \
9712                         -not -name changelog_mask \
9713                         -exec badarea_io '{}' \\\; &> /dev/null ||
9714                 error "$facet find $proc_dirs failed"
9715
9716         done
9717
9718         # remount the FS in case writes/reads /proc break the FS
9719         cleanup || error "failed to unmount"
9720         setup || error "failed to setup"
9721         true
9722 }
9723 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9724
9725 test_134a() {
9726         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9727         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9728                 skip "Need MDS version at least 2.7.54" && return
9729
9730         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9731         cancel_lru_locks mdc
9732
9733         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9734         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9735         [ $unused -eq 0 ] || error "$unused locks are not cleared"
9736
9737         local nr=1000
9738         createmany -o $DIR/$tdir/f $nr ||
9739                 error "failed to create $nr files in $DIR/$tdir"
9740         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9741
9742         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9743         do_facet mds1 $LCTL set_param fail_loc=0x327
9744         do_facet mds1 $LCTL set_param fail_val=500
9745         touch $DIR/$tdir/m
9746
9747         echo "sleep 10 seconds ..."
9748         sleep 10
9749         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9750
9751         do_facet mds1 $LCTL set_param fail_loc=0
9752         do_facet mds1 $LCTL set_param fail_val=0
9753         [ $lck_cnt -lt $unused ] ||
9754                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9755
9756         rm $DIR/$tdir/m
9757         unlinkmany $DIR/$tdir/f $nr
9758 }
9759 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9760
9761 test_134b() {
9762         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9763         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9764                 skip "Need MDS version at least 2.7.54" && return
9765
9766         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9767         cancel_lru_locks mdc
9768
9769         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9770                         ldlm.lock_reclaim_threshold_mb)
9771         # disable reclaim temporarily
9772         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9773
9774         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9775         do_facet mds1 $LCTL set_param fail_loc=0x328
9776         do_facet mds1 $LCTL set_param fail_val=500
9777
9778         $LCTL set_param debug=+trace
9779
9780         local nr=600
9781         createmany -o $DIR/$tdir/f $nr &
9782         local create_pid=$!
9783
9784         echo "Sleep $TIMEOUT seconds ..."
9785         sleep $TIMEOUT
9786         if ! ps -p $create_pid  > /dev/null 2>&1; then
9787                 do_facet mds1 $LCTL set_param fail_loc=0
9788                 do_facet mds1 $LCTL set_param fail_val=0
9789                 do_facet mds1 $LCTL set_param \
9790                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
9791                 error "createmany finished incorrectly!"
9792         fi
9793         do_facet mds1 $LCTL set_param fail_loc=0
9794         do_facet mds1 $LCTL set_param fail_val=0
9795         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
9796         wait $create_pid || return 1
9797
9798         unlinkmany $DIR/$tdir/f $nr
9799 }
9800 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
9801
9802 test_140() { #bug-17379
9803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9804         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9805         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9806         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
9807
9808         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9809         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9810         local i=0
9811         while i=`expr $i + 1`; do
9812                 test_mkdir -p $i || error "Creating dir $i"
9813                 cd $i || error "Changing to $i"
9814                 ln -s ../stat stat || error "Creating stat symlink"
9815                 # Read the symlink until ELOOP present,
9816                 # not LBUGing the system is considered success,
9817                 # we didn't overrun the stack.
9818                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9819                 [ $ret -ne 0 ] && {
9820                         if [ $ret -eq 40 ]; then
9821                                 break  # -ELOOP
9822                         else
9823                                 error "Open stat symlink"
9824                                 return
9825                         fi
9826                 }
9827         done
9828         i=`expr $i - 1`
9829         echo "The symlink depth = $i"
9830         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9831                                         error "Invalid symlink depth"
9832
9833         # Test recursive symlink
9834         ln -s symlink_self symlink_self
9835         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9836         echo "open symlink_self returns $ret"
9837         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9838 }
9839 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9840
9841 test_150() {
9842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9843         local TF="$TMP/$tfile"
9844
9845         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9846         cp $TF $DIR/$tfile
9847         cancel_lru_locks osc
9848         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9849         remount_client $MOUNT
9850         df -P $MOUNT
9851         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9852
9853         $TRUNCATE $TF 6000
9854         $TRUNCATE $DIR/$tfile 6000
9855         cancel_lru_locks osc
9856         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9857
9858         echo "12345" >>$TF
9859         echo "12345" >>$DIR/$tfile
9860         cancel_lru_locks osc
9861         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9862
9863         echo "12345" >>$TF
9864         echo "12345" >>$DIR/$tfile
9865         cancel_lru_locks osc
9866         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9867
9868         rm -f $TF
9869         true
9870 }
9871 run_test 150 "truncate/append tests"
9872
9873 #LU-2902 roc_hit was not able to read all values from lproc
9874 function roc_hit_init() {
9875         local list=$(comma_list $(osts_nodes))
9876         local dir=$DIR/$tdir-check
9877         local file=$dir/file
9878         local BEFORE
9879         local AFTER
9880         local idx
9881
9882         test_mkdir -p $dir
9883         #use setstripe to do a write to every ost
9884         for i in $(seq 0 $((OSTCOUNT-1))); do
9885                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9886                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9887                 idx=$(printf %04x $i)
9888                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9889                         awk '$1 == "cache_access" {sum += $7}
9890                                 END { printf("%0.0f", sum) }')
9891
9892                 cancel_lru_locks osc
9893                 cat $file >/dev/null
9894
9895                 AFTER=$(get_osd_param $list *OST*$idx stats |
9896                         awk '$1 == "cache_access" {sum += $7}
9897                                 END { printf("%0.0f", sum) }')
9898
9899                 echo BEFORE:$BEFORE AFTER:$AFTER
9900                 if ! let "AFTER - BEFORE == 4"; then
9901                         rm -rf $dir
9902                         error "roc_hit is not safe to use"
9903                 fi
9904                 rm $file
9905         done
9906
9907         rm -rf $dir
9908 }
9909
9910 function roc_hit() {
9911         local list=$(comma_list $(osts_nodes))
9912         echo $(get_osd_param $list '' stats |
9913                 awk '$1 == "cache_hit" {sum += $7}
9914                         END { printf("%0.0f", sum) }')
9915 }
9916
9917 function set_cache() {
9918         local on=1
9919
9920         if [ "$2" == "off" ]; then
9921                 on=0;
9922         fi
9923         local list=$(comma_list $(osts_nodes))
9924         set_osd_param $list '' $1_cache_enable $on
9925
9926         cancel_lru_locks osc
9927 }
9928
9929 test_151() {
9930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9931         remote_ost_nodsh && skip "remote OST with nodsh" && return
9932
9933         local CPAGES=3
9934         local list=$(comma_list $(osts_nodes))
9935
9936         # check whether obdfilter is cache capable at all
9937         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9938                 echo "not cache-capable obdfilter"
9939                 return 0
9940         fi
9941
9942         # check cache is enabled on all obdfilters
9943         if get_osd_param $list '' read_cache_enable | grep 0; then
9944                 echo "oss cache is disabled"
9945                 return 0
9946         fi
9947
9948         set_osd_param $list '' writethrough_cache_enable 1
9949
9950         # check write cache is enabled on all obdfilters
9951         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9952                 echo "oss write cache is NOT enabled"
9953                 return 0
9954         fi
9955
9956         roc_hit_init
9957
9958         #define OBD_FAIL_OBD_NO_LRU  0x609
9959         do_nodes $list $LCTL set_param fail_loc=0x609
9960
9961         # pages should be in the case right after write
9962         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9963                 error "dd failed"
9964
9965         local BEFORE=$(roc_hit)
9966         cancel_lru_locks osc
9967         cat $DIR/$tfile >/dev/null
9968         local AFTER=$(roc_hit)
9969
9970         do_nodes $list $LCTL set_param fail_loc=0
9971
9972         if ! let "AFTER - BEFORE == CPAGES"; then
9973                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9974         fi
9975
9976         # the following read invalidates the cache
9977         cancel_lru_locks osc
9978         set_osd_param $list '' read_cache_enable 0
9979         cat $DIR/$tfile >/dev/null
9980
9981         # now data shouldn't be found in the cache
9982         BEFORE=$(roc_hit)
9983         cancel_lru_locks osc
9984         cat $DIR/$tfile >/dev/null
9985         AFTER=$(roc_hit)
9986         if let "AFTER - BEFORE != 0"; then
9987                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9988         fi
9989
9990         set_osd_param $list '' read_cache_enable 1
9991         rm -f $DIR/$tfile
9992 }
9993 run_test 151 "test cache on oss and controls ==============================="
9994
9995 test_152() {
9996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9997         local TF="$TMP/$tfile"
9998
9999         # simulate ENOMEM during write
10000 #define OBD_FAIL_OST_NOMEM      0x226
10001         lctl set_param fail_loc=0x80000226
10002         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10003         cp $TF $DIR/$tfile
10004         sync || error "sync failed"
10005         lctl set_param fail_loc=0
10006
10007         # discard client's cache
10008         cancel_lru_locks osc
10009
10010         # simulate ENOMEM during read
10011         lctl set_param fail_loc=0x80000226
10012         cmp $TF $DIR/$tfile || error "cmp failed"
10013         lctl set_param fail_loc=0
10014
10015         rm -f $TF
10016 }
10017 run_test 152 "test read/write with enomem ============================"
10018
10019 test_153() {
10020         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10021 }
10022 run_test 153 "test if fdatasync does not crash ======================="
10023
10024 dot_lustre_fid_permission_check() {
10025         local fid=$1
10026         local ffid=$MOUNT/.lustre/fid/$fid
10027         local test_dir=$2
10028
10029         echo "stat fid $fid"
10030         stat $ffid > /dev/null || error "stat $ffid failed."
10031         echo "touch fid $fid"
10032         touch $ffid || error "touch $ffid failed."
10033         echo "write to fid $fid"
10034         cat /etc/hosts > $ffid || error "write $ffid failed."
10035         echo "read fid $fid"
10036         diff /etc/hosts $ffid || error "read $ffid failed."
10037         echo "append write to fid $fid"
10038         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10039         echo "rename fid $fid"
10040         mv $ffid $test_dir/$tfile.1 &&
10041                 error "rename $ffid to $tfile.1 should fail."
10042         touch $test_dir/$tfile.1
10043         mv $test_dir/$tfile.1 $ffid &&
10044                 error "rename $tfile.1 to $ffid should fail."
10045         rm -f $test_dir/$tfile.1
10046         echo "truncate fid $fid"
10047         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10048         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10049                 echo "link fid $fid"
10050                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10051         fi
10052         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10053                 echo "setfacl fid $fid"
10054                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10055                 echo "getfacl fid $fid"
10056                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10057         fi
10058         echo "unlink fid $fid"
10059         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10060         echo "mknod fid $fid"
10061         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10062
10063         fid=[0xf00000400:0x1:0x0]
10064         ffid=$MOUNT/.lustre/fid/$fid
10065
10066         echo "stat non-exist fid $fid"
10067         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10068         echo "write to non-exist fid $fid"
10069         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10070         echo "link new fid $fid"
10071         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10072
10073         mkdir -p $test_dir/$tdir
10074         touch $test_dir/$tdir/$tfile
10075         fid=$($LFS path2fid $test_dir/$tdir)
10076         rc=$?
10077         [ $rc -ne 0 ] &&
10078                 error "error: could not get fid for $test_dir/$dir/$tfile."
10079
10080         ffid=$MOUNT/.lustre/fid/$fid
10081
10082         echo "ls $fid"
10083         ls $ffid > /dev/null || error "ls $ffid failed."
10084         echo "touch $fid/$tfile.1"
10085         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10086
10087         echo "touch $MOUNT/.lustre/fid/$tfile"
10088         touch $MOUNT/.lustre/fid/$tfile && \
10089                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10090
10091         echo "setxattr to $MOUNT/.lustre/fid"
10092         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10093
10094         echo "listxattr for $MOUNT/.lustre/fid"
10095         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10096
10097         echo "delxattr from $MOUNT/.lustre/fid"
10098         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10099
10100         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10101         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10102                 error "touch invalid fid should fail."
10103
10104         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10105         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10106                 error "touch non-normal fid should fail."
10107
10108         echo "rename $tdir to $MOUNT/.lustre/fid"
10109         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10110                 error "rename to $MOUNT/.lustre/fid should fail."
10111
10112         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10113         then            # LU-3547
10114                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10115                 local new_obf_mode=777
10116
10117                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10118                 chmod $new_obf_mode $DIR/.lustre/fid ||
10119                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10120
10121                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10122                 [ $obf_mode -eq $new_obf_mode ] ||
10123                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10124
10125                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10126                 chmod $old_obf_mode $DIR/.lustre/fid ||
10127                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10128         fi
10129
10130         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10131         fid=$($LFS path2fid $test_dir/$tfile-2)
10132
10133         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10134         then # LU-5424
10135                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10136                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10137                         error "create lov data thru .lustre failed"
10138         fi
10139         echo "cp /etc/passwd $test_dir/$tfile-2"
10140         cp /etc/passwd $test_dir/$tfile-2 ||
10141                 error "copy to $test_dir/$tfile-2 failed."
10142         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10143         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10144                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10145
10146         rm -rf $test_dir/tfile.lnk
10147         rm -rf $test_dir/$tfile-2
10148 }
10149
10150 test_154A() {
10151         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10152                 skip "Need MDS version at least 2.4.1" && return
10153
10154         local tf=$DIR/$tfile
10155         touch $tf
10156
10157         local fid=$($LFS path2fid $tf)
10158         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10159
10160         # check that we get the same pathname back
10161         local found=$($LFS fid2path $MOUNT "$fid")
10162         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10163         [ "$found" == "$tf" ] ||
10164                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10165 }
10166 run_test 154A "lfs path2fid and fid2path basic checks"
10167
10168 test_154B() {
10169         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10170                 skip "Need MDS version at least 2.4.1" && return
10171
10172         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10173         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10174         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10175         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10176
10177         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10178         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10179
10180         # check that we get the same pathname
10181         echo "PFID: $PFID, name: $name"
10182         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10183         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10184         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10185                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10186
10187         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10188 }
10189 run_test 154B "verify the ll_decode_linkea tool"
10190
10191 test_154a() {
10192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10193         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10194                 { skip "Need MDS version at least 2.2.51"; return 0; }
10195         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10196         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10197
10198         cp /etc/hosts $DIR/$tfile
10199
10200         fid=$($LFS path2fid $DIR/$tfile)
10201         rc=$?
10202         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10203
10204         dot_lustre_fid_permission_check "$fid" $DIR ||
10205                 error "dot lustre permission check $fid failed"
10206
10207         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10208
10209         touch $MOUNT/.lustre/file &&
10210                 error "creation is not allowed under .lustre"
10211
10212         mkdir $MOUNT/.lustre/dir &&
10213                 error "mkdir is not allowed under .lustre"
10214
10215         rm -rf $DIR/$tfile
10216 }
10217 run_test 154a "Open-by-FID"
10218
10219 test_154b() {
10220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10221         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10222                 { skip "Need MDS version at least 2.2.51"; return 0; }
10223         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10224
10225         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10226
10227         local remote_dir=$DIR/$tdir/remote_dir
10228         local MDTIDX=1
10229         local rc=0
10230
10231         mkdir -p $DIR/$tdir
10232         $LFS mkdir -i $MDTIDX $remote_dir ||
10233                 error "create remote directory failed"
10234
10235         cp /etc/hosts $remote_dir/$tfile
10236
10237         fid=$($LFS path2fid $remote_dir/$tfile)
10238         rc=$?
10239         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10240
10241         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10242                 error "dot lustre permission check $fid failed"
10243         rm -rf $DIR/$tdir
10244 }
10245 run_test 154b "Open-by-FID for remote directory"
10246
10247 test_154c() {
10248         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10249                 skip "Need MDS version at least 2.4.1" && return
10250
10251         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10252         local FID1=$($LFS path2fid $DIR/$tfile.1)
10253         local FID2=$($LFS path2fid $DIR/$tfile.2)
10254         local FID3=$($LFS path2fid $DIR/$tfile.3)
10255
10256         local N=1
10257         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10258                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10259                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10260                 local want=FID$N
10261                 [ "$FID" = "${!want}" ] ||
10262                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10263                 N=$((N + 1))
10264         done
10265
10266         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10267         do
10268                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10269                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10270                 N=$((N + 1))
10271         done
10272 }
10273 run_test 154c "lfs path2fid and fid2path multiple arguments"
10274
10275 test_154d() {
10276         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10277         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10278                 skip "Need MDS version at least 2.5.53" && return
10279
10280         if remote_mds; then
10281                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10282         else
10283                 nid="0@lo"
10284         fi
10285         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10286         local fd
10287         local cmd
10288
10289         rm -f $DIR/$tfile
10290         touch $DIR/$tfile
10291
10292         local fid=$($LFS path2fid $DIR/$tfile)
10293         # Open the file
10294         fd=$(free_fd)
10295         cmd="exec $fd<$DIR/$tfile"
10296         eval $cmd
10297         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10298         echo "$fid_list" | grep "$fid"
10299         rc=$?
10300
10301         cmd="exec $fd>/dev/null"
10302         eval $cmd
10303         if [ $rc -ne 0 ]; then
10304                 error "FID $fid not found in open files list $fid_list"
10305         fi
10306 }
10307 run_test 154d "Verify open file fid"
10308
10309 test_154e()
10310 {
10311         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10312                 skip "Need MDS version at least 2.6.50" && return
10313
10314         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10315                 error ".lustre returned by readdir"
10316         fi
10317 }
10318 run_test 154e ".lustre is not returned by readdir"
10319
10320 test_154f() {
10321         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10322         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10323         test_mkdir -p -c1 $DIR/$tdir/d
10324         # test dirs inherit from its stripe
10325         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10326         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10327         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10328         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10329         touch $DIR/f
10330
10331         # get fid of parents
10332         local FID0=$($LFS path2fid $DIR/$tdir/d)
10333         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10334         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10335         local FID3=$($LFS path2fid $DIR)
10336
10337         # check that path2fid --parents returns expected <parent_fid>/name
10338         # 1) test for a directory (single parent)
10339         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10340         [ "$parent" == "$FID0/foo1" ] ||
10341                 error "expected parent: $FID0/foo1, got: $parent"
10342
10343         # 2) test for a file with nlink > 1 (multiple parents)
10344         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10345         echo "$parent" | grep -F "$FID1/$tfile" ||
10346                 error "$FID1/$tfile not returned in parent list"
10347         echo "$parent" | grep -F "$FID2/link" ||
10348                 error "$FID2/link not returned in parent list"
10349
10350         # 3) get parent by fid
10351         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10352         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10353         echo "$parent" | grep -F "$FID1/$tfile" ||
10354                 error "$FID1/$tfile not returned in parent list (by fid)"
10355         echo "$parent" | grep -F "$FID2/link" ||
10356                 error "$FID2/link not returned in parent list (by fid)"
10357
10358         # 4) test for entry in root directory
10359         parent=$($LFS path2fid --parents $DIR/f)
10360         echo "$parent" | grep -F "$FID3/f" ||
10361                 error "$FID3/f not returned in parent list"
10362
10363         # 5) test it on root directory
10364         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10365                 error "$MOUNT should not have parents"
10366
10367         # enable xattr caching and check that linkea is correctly updated
10368         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10369         save_lustre_params client "llite.*.xattr_cache" > $save
10370         lctl set_param llite.*.xattr_cache 1
10371
10372         # 6.1) linkea update on rename
10373         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10374
10375         # get parents by fid
10376         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10377         # foo1 should no longer be returned in parent list
10378         echo "$parent" | grep -F "$FID1" &&
10379                 error "$FID1 should no longer be in parent list"
10380         # the new path should appear
10381         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10382                 error "$FID2/$tfile.moved is not in parent list"
10383
10384         # 6.2) linkea update on unlink
10385         rm -f $DIR/$tdir/d/foo2/link
10386         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10387         # foo2/link should no longer be returned in parent list
10388         echo "$parent" | grep -F "$FID2/link" &&
10389                 error "$FID2/link should no longer be in parent list"
10390         true
10391
10392         rm -f $DIR/f
10393         restore_lustre_params < $save
10394         rm -f $save
10395 }
10396 run_test 154f "get parent fids by reading link ea"
10397
10398 test_154g()
10399 {
10400         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10401                 { skip "Need MDS version at least 2.6.92"; return 0; }
10402         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10403
10404         mkdir -p $DIR/$tdir
10405         llapi_fid_test -d $DIR/$tdir
10406 }
10407 run_test 154g "various llapi FID tests"
10408
10409 test_155_small_load() {
10410     local temp=$TMP/$tfile
10411     local file=$DIR/$tfile
10412
10413     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10414         error "dd of=$temp bs=6096 count=1 failed"
10415     cp $temp $file
10416     cancel_lru_locks osc
10417     cmp $temp $file || error "$temp $file differ"
10418
10419     $TRUNCATE $temp 6000
10420     $TRUNCATE $file 6000
10421     cmp $temp $file || error "$temp $file differ (truncate1)"
10422
10423     echo "12345" >>$temp
10424     echo "12345" >>$file
10425     cmp $temp $file || error "$temp $file differ (append1)"
10426
10427     echo "12345" >>$temp
10428     echo "12345" >>$file
10429     cmp $temp $file || error "$temp $file differ (append2)"
10430
10431     rm -f $temp $file
10432     true
10433 }
10434
10435 test_155_big_load() {
10436     remote_ost_nodsh && skip "remote OST with nodsh" && return
10437     local temp=$TMP/$tfile
10438     local file=$DIR/$tfile
10439
10440     free_min_max
10441     local cache_size=$(do_facet ost$((MAXI+1)) \
10442         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10443     local large_file_size=$((cache_size * 2))
10444
10445     echo "OSS cache size: $cache_size KB"
10446     echo "Large file size: $large_file_size KB"
10447
10448     [ $MAXV -le $large_file_size ] && \
10449         skip_env "max available OST size needs > $large_file_size KB" && \
10450         return 0
10451
10452     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10453
10454     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10455         error "dd of=$temp bs=$large_file_size count=1k failed"
10456     cp $temp $file
10457     ls -lh $temp $file
10458     cancel_lru_locks osc
10459     cmp $temp $file || error "$temp $file differ"
10460
10461     rm -f $temp $file
10462     true
10463 }
10464
10465 save_writethrough() {
10466         local facets=$(get_facets OST)
10467
10468         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10469         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10470 }
10471
10472 test_155a() {
10473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10474         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10475         save_writethrough $p
10476
10477         set_cache read on
10478         set_cache writethrough on
10479         test_155_small_load
10480         restore_lustre_params < $p
10481         rm -f $p
10482 }
10483 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10484
10485 test_155b() {
10486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10487         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10488         save_writethrough $p
10489
10490         set_cache read on
10491         set_cache writethrough off
10492         test_155_small_load
10493         restore_lustre_params < $p
10494         rm -f $p
10495 }
10496 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10497
10498 test_155c() {
10499         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10500         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10501         save_writethrough $p
10502
10503         set_cache read off
10504         set_cache writethrough on
10505         test_155_small_load
10506         restore_lustre_params < $p
10507         rm -f $p
10508 }
10509 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10510
10511 test_155d() {
10512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10513         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10514         save_writethrough $p
10515
10516         set_cache read off
10517         set_cache writethrough off
10518         test_155_small_load
10519         restore_lustre_params < $p
10520         rm -f $p
10521 }
10522 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10523
10524 test_155e() {
10525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10526         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10527         save_writethrough $p
10528
10529         set_cache read on
10530         set_cache writethrough on
10531         test_155_big_load
10532         restore_lustre_params < $p
10533         rm -f $p
10534 }
10535 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10536
10537 test_155f() {
10538         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10539         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10540         save_writethrough $p
10541
10542         set_cache read on
10543         set_cache writethrough off
10544         test_155_big_load
10545         restore_lustre_params < $p
10546         rm -f $p
10547 }
10548 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10549
10550 test_155g() {
10551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10552         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10553         save_writethrough $p
10554
10555         set_cache read off
10556         set_cache writethrough on
10557         test_155_big_load
10558         restore_lustre_params < $p
10559         rm -f $p
10560 }
10561 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10562
10563 test_155h() {
10564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10565         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10566         save_writethrough $p
10567
10568         set_cache read off
10569         set_cache writethrough off
10570         test_155_big_load
10571         restore_lustre_params < $p
10572         rm -f $p
10573 }
10574 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10575
10576 test_156() {
10577         remote_ost_nodsh && skip "remote OST with nodsh" && return
10578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10579         local CPAGES=3
10580         local BEFORE
10581         local AFTER
10582         local file="$DIR/$tfile"
10583         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10584
10585         [ "$(facet_fstype ost1)" = "zfs" -a \
10586            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10587                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10588                 return
10589
10590         save_writethrough $p
10591         roc_hit_init
10592
10593         log "Turn on read and write cache"
10594         set_cache read on
10595         set_cache writethrough on
10596
10597         log "Write data and read it back."
10598         log "Read should be satisfied from the cache."
10599         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10600         BEFORE=$(roc_hit)
10601         cancel_lru_locks osc
10602         cat $file >/dev/null
10603         AFTER=$(roc_hit)
10604         if ! let "AFTER - BEFORE == CPAGES"; then
10605                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10606         else
10607                 log "cache hits:: before: $BEFORE, after: $AFTER"
10608         fi
10609
10610         log "Read again; it should be satisfied from the cache."
10611         BEFORE=$AFTER
10612         cancel_lru_locks osc
10613         cat $file >/dev/null
10614         AFTER=$(roc_hit)
10615         if ! let "AFTER - BEFORE == CPAGES"; then
10616                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10617         else
10618                 log "cache hits:: before: $BEFORE, after: $AFTER"
10619         fi
10620
10621         log "Turn off the read cache and turn on the write cache"
10622         set_cache read off
10623         set_cache writethrough on
10624
10625         log "Read again; it should be satisfied from the cache."
10626         BEFORE=$(roc_hit)
10627         cancel_lru_locks osc
10628         cat $file >/dev/null
10629         AFTER=$(roc_hit)
10630         if ! let "AFTER - BEFORE == CPAGES"; then
10631                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10632         else
10633                 log "cache hits:: before: $BEFORE, after: $AFTER"
10634         fi
10635
10636         log "Read again; it should not be satisfied from the cache."
10637         BEFORE=$AFTER
10638         cancel_lru_locks osc
10639         cat $file >/dev/null
10640         AFTER=$(roc_hit)
10641         if ! let "AFTER - BEFORE == 0"; then
10642                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10643         else
10644                 log "cache hits:: before: $BEFORE, after: $AFTER"
10645         fi
10646
10647         log "Write data and read it back."
10648         log "Read should be satisfied from the cache."
10649         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10650         BEFORE=$(roc_hit)
10651         cancel_lru_locks osc
10652         cat $file >/dev/null
10653         AFTER=$(roc_hit)
10654         if ! let "AFTER - BEFORE == CPAGES"; then
10655                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10656         else
10657                 log "cache hits:: before: $BEFORE, after: $AFTER"
10658         fi
10659
10660         log "Read again; it should not be satisfied from the cache."
10661         BEFORE=$AFTER
10662         cancel_lru_locks osc
10663         cat $file >/dev/null
10664         AFTER=$(roc_hit)
10665         if ! let "AFTER - BEFORE == 0"; then
10666                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10667         else
10668                 log "cache hits:: before: $BEFORE, after: $AFTER"
10669         fi
10670
10671         log "Turn off read and write cache"
10672         set_cache read off
10673         set_cache writethrough off
10674
10675         log "Write data and read it back"
10676         log "It should not be satisfied from the cache."
10677         rm -f $file
10678         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10679         cancel_lru_locks osc
10680         BEFORE=$(roc_hit)
10681         cat $file >/dev/null
10682         AFTER=$(roc_hit)
10683         if ! let "AFTER - BEFORE == 0"; then
10684                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10685         else
10686                 log "cache hits:: before: $BEFORE, after: $AFTER"
10687         fi
10688
10689         log "Turn on the read cache and turn off the write cache"
10690         set_cache read on
10691         set_cache writethrough off
10692
10693         log "Write data and read it back"
10694         log "It should not be satisfied from the cache."
10695         rm -f $file
10696         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10697         BEFORE=$(roc_hit)
10698         cancel_lru_locks osc
10699         cat $file >/dev/null
10700         AFTER=$(roc_hit)
10701         if ! let "AFTER - BEFORE == 0"; then
10702                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10703         else
10704                 log "cache hits:: before: $BEFORE, after: $AFTER"
10705         fi
10706
10707         log "Read again; it should be satisfied from the cache."
10708         BEFORE=$(roc_hit)
10709         cancel_lru_locks osc
10710         cat $file >/dev/null
10711         AFTER=$(roc_hit)
10712         if ! let "AFTER - BEFORE == CPAGES"; then
10713                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10714         else
10715                 log "cache hits:: before: $BEFORE, after: $AFTER"
10716         fi
10717
10718         rm -f $file
10719         restore_lustre_params < $p
10720         rm -f $p
10721 }
10722 run_test 156 "Verification of tunables"
10723
10724 #Changelogs
10725 cleanup_changelog () {
10726         trap 0
10727         echo "Deregistering changelog client $CL_USER"
10728         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
10729 }
10730
10731 err17935 () {
10732         if [[ $MDSCOUNT -gt 1 ]]; then
10733                 error_ignore bz17935 $*
10734         else
10735                 error $*
10736         fi
10737 }
10738
10739 changelog_chmask()
10740 {
10741         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10742
10743         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10744
10745         if [ $MASK -eq 1 ]; then
10746                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10747         else
10748                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10749         fi
10750 }
10751
10752 changelog_extract_field() {
10753         local mdt=$1
10754         local cltype=$2
10755         local file=$3
10756         local identifier=$4
10757
10758         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10759                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10760                 tail -1
10761 }
10762
10763 test_160a() {
10764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10765         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10766         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10767                 { skip "Need MDS version at least 2.2.0"; return; }
10768
10769         local CL_USERS="mdd.$MDT0.changelog_users"
10770         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10771         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10772                 changelog_register -n)
10773         echo "Registered as changelog user $CL_USER"
10774         trap cleanup_changelog EXIT
10775         $GET_CL_USERS | grep -q $CL_USER ||
10776                 error "User $CL_USER not found in changelog_users"
10777
10778         # change something
10779         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10780         touch $DIR/$tdir/pics/2008/zachy/timestamp
10781         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10782         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10783         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10784         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10785         rm $DIR/$tdir/pics/desktop.jpg
10786
10787         $LFS changelog $MDT0 | tail -5
10788
10789         echo "verifying changelog mask"
10790         changelog_chmask "MKDIR"
10791         changelog_chmask "CLOSE"
10792
10793         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10794         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10795
10796         changelog_chmask "MKDIR"
10797         changelog_chmask "CLOSE"
10798
10799         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10800         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10801
10802         $LFS changelog $MDT0
10803         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10804         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10805         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10806         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10807
10808         # verify contents
10809         echo "verifying target fid"
10810         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10811         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10812         [ "$fidc" == "$fidf" ] ||
10813                 err17935 "fid in changelog $fidc != file fid $fidf"
10814         echo "verifying parent fid"
10815         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10816         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10817         [ "$fidc" == "$fidf" ] ||
10818                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10819
10820         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
10821         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
10822         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
10823         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10824         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10825                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10826
10827         MIN_REC=$($GET_CL_USERS |
10828                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10829         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10830         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10831         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10832                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10833
10834         # LU-3446 changelog index reset on MDT restart
10835         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10836         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10837         $LFS changelog_clear $MDT0 $CL_USER 0
10838         stop $SINGLEMDS || error "Fail to stop MDT."
10839         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10840         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10841         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10842         [ $CUR_REC1 == $CUR_REC2 ] ||
10843                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10844
10845         echo "verifying user deregister"
10846         cleanup_changelog
10847         $GET_CL_USERS | grep -q $CL_USER &&
10848                 error "User $CL_USER still in changelog_users"
10849
10850         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10851         if [ $CL_USER -eq 0 ]; then
10852                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10853                 touch $DIR/$tdir/chloe
10854                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10855                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10856                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10857         else
10858                 echo "$CL_USER other changelog users; can't verify off"
10859         fi
10860 }
10861 run_test 160a "changelog sanity"
10862
10863 test_160b() { # LU-3587
10864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10865         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10866         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10867                 { skip "Need MDS version at least 2.2.0"; return; }
10868
10869         local CL_USERS="mdd.$MDT0.changelog_users"
10870         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10871         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10872                 changelog_register -n)
10873         echo "Registered as changelog user $CL_USER"
10874         trap cleanup_changelog EXIT
10875         $GET_CL_USERS | grep -q $CL_USER ||
10876                 error "User $CL_USER not found in changelog_users"
10877
10878         local LONGNAME1=$(str_repeat a 255)
10879         local LONGNAME2=$(str_repeat b 255)
10880
10881         cd $DIR
10882         echo "creating very long named file"
10883         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10884         echo "moving very long named file"
10885         mv $LONGNAME1 $LONGNAME2
10886
10887         $LFS changelog $MDT0 | grep RENME
10888         rm -f $LONGNAME2
10889         cleanup_changelog
10890 }
10891 run_test 160b "Verify that very long rename doesn't crash in changelog"
10892
10893 test_160c() {
10894         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10895
10896         local rc=0
10897         local server_version=$(lustre_version_code $SINGLEMDS)
10898
10899         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10900                 [[ $server_version -gt $(version_code 2.5.1) &&
10901                    $server_version -lt $(version_code 2.5.50) ]] ||
10902                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10903         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10904
10905         # Registration step
10906         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10907                 changelog_register -n)
10908         trap cleanup_changelog EXIT
10909
10910         rm -rf $DIR/$tdir
10911         mkdir -p $DIR/$tdir
10912         $MCREATE $DIR/$tdir/foo_160c
10913         changelog_chmask "TRUNC"
10914         $TRUNCATE $DIR/$tdir/foo_160c 200
10915         changelog_chmask "TRUNC"
10916         $TRUNCATE $DIR/$tdir/foo_160c 199
10917         $LFS changelog $MDT0
10918         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10919         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10920         $LFS changelog_clear $MDT0 $CL_USER 0
10921
10922         # Deregistration step
10923         cleanup_changelog
10924 }
10925 run_test 160c "verify that changelog log catch the truncate event"
10926
10927 test_160d() {
10928         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10929         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10930
10931         local server_version=$(lustre_version_code mds1)
10932         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10933
10934         [[ $server_version -ge $(version_code 2.7.60) ]] ||
10935                 { skip "Need MDS version at least 2.7.60+"; return; }
10936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10937
10938         # Registration step
10939         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
10940                 changelog_register -n)
10941
10942         trap cleanup_changelog EXIT
10943         mkdir -p $DIR/$tdir/migrate_dir
10944         $LFS changelog_clear $MDT0 $CL_USER 0
10945
10946         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
10947         $LFS changelog $MDT0
10948         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
10949         $LFS changelog_clear $MDT0 $CL_USER 0
10950         [ $MIGRATES -eq 1 ] ||
10951                 error "MIGRATE changelog mask count $MIGRATES != 1"
10952
10953         # Deregistration step
10954         cleanup_changelog
10955 }
10956 run_test 160d "verify that changelog log catch the migrate event"
10957
10958 test_161a() {
10959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10960         test_mkdir -p -c1 $DIR/$tdir
10961         cp /etc/hosts $DIR/$tdir/$tfile
10962         test_mkdir -c1 $DIR/$tdir/foo1
10963         test_mkdir -c1 $DIR/$tdir/foo2
10964         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10965         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10966         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10967         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10968         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10969         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10970                 $LFS fid2path $DIR $FID
10971                 err17935 "bad link ea"
10972         fi
10973     # middle
10974     rm $DIR/$tdir/foo2/zachary
10975     # last
10976     rm $DIR/$tdir/foo2/thor
10977     # first
10978     rm $DIR/$tdir/$tfile
10979     # rename
10980     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10981     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10982         then
10983         $LFS fid2path $DIR $FID
10984         err17935 "bad link rename"
10985     fi
10986     rm $DIR/$tdir/foo2/maggie
10987
10988         # overflow the EA
10989         local longname=filename_avg_len_is_thirty_two_
10990         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10991                 error "failed to hardlink many files"
10992         links=$($LFS fid2path $DIR $FID | wc -l)
10993         echo -n "${links}/1000 links in link EA"
10994         [[ $links -gt 60 ]] ||
10995                 err17935 "expected at least 60 links in link EA"
10996         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10997                 error "failed to unlink many hardlinks"
10998 }
10999 run_test 161a "link ea sanity"
11000
11001 test_161b() {
11002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11003         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11004         local MDTIDX=1
11005         local remote_dir=$DIR/$tdir/remote_dir
11006
11007         mkdir -p $DIR/$tdir
11008         $LFS mkdir -i $MDTIDX $remote_dir ||
11009                 error "create remote directory failed"
11010
11011         cp /etc/hosts $remote_dir/$tfile
11012         mkdir -p $remote_dir/foo1
11013         mkdir -p $remote_dir/foo2
11014         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11015         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11016         ln $remote_dir/$tfile $remote_dir/foo1/luna
11017         ln $remote_dir/$tfile $remote_dir/foo2/thor
11018
11019         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11020                      tr -d ']')
11021         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11022                 $LFS fid2path $DIR $FID
11023                 err17935 "bad link ea"
11024         fi
11025         # middle
11026         rm $remote_dir/foo2/zachary
11027         # last
11028         rm $remote_dir/foo2/thor
11029         # first
11030         rm $remote_dir/$tfile
11031         # rename
11032         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11033         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11034         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11035                 $LFS fid2path $DIR $FID
11036                 err17935 "bad link rename"
11037         fi
11038         rm $remote_dir/foo2/maggie
11039
11040         # overflow the EA
11041         local longname=filename_avg_len_is_thirty_two_
11042         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11043                 error "failed to hardlink many files"
11044         links=$($LFS fid2path $DIR $FID | wc -l)
11045         echo -n "${links}/1000 links in link EA"
11046         [[ ${links} -gt 60 ]] ||
11047                 err17935 "expected at least 60 links in link EA"
11048         unlinkmany $remote_dir/foo2/$longname 1000 ||
11049         error "failed to unlink many hardlinks"
11050 }
11051 run_test 161b "link ea sanity under remote directory"
11052
11053 test_161c() {
11054         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11055         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11056         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11057                 skip "Need MDS version at least 2.1.5" && return
11058
11059         # define CLF_RENAME_LAST 0x0001
11060         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11061         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11062                 changelog_register -n)
11063
11064         trap cleanup_changelog EXIT
11065         rm -rf $DIR/$tdir
11066         mkdir -p $DIR/$tdir
11067         touch $DIR/$tdir/foo_161c
11068         touch $DIR/$tdir/bar_161c
11069         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11070         $LFS changelog $MDT0 | grep RENME
11071         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11072                 cut -f5 -d' ')
11073         $LFS changelog_clear $MDT0 $CL_USER 0
11074         if [ x$flags != "x0x1" ]; then
11075                 error "flag $flags is not 0x1"
11076         fi
11077         echo "rename overwrite a target having nlink = 1," \
11078                 "changelog record has flags of $flags"
11079
11080         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11081         touch $DIR/$tdir/foo_161c
11082         touch $DIR/$tdir/bar_161c
11083         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11084         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11085         $LFS changelog $MDT0 | grep RENME
11086         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11087         $LFS changelog_clear $MDT0 $CL_USER 0
11088         if [ x$flags != "x0x0" ]; then
11089                 error "flag $flags is not 0x0"
11090         fi
11091         echo "rename overwrite a target having nlink > 1," \
11092                 "changelog record has flags of $flags"
11093
11094         # rename doesn't overwrite a target (changelog flag 0x0)
11095         touch $DIR/$tdir/foo_161c
11096         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11097         $LFS changelog $MDT0 | grep RENME
11098         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11099         $LFS changelog_clear $MDT0 $CL_USER 0
11100         if [ x$flags != "x0x0" ]; then
11101                 error "flag $flags is not 0x0"
11102         fi
11103         echo "rename doesn't overwrite a target," \
11104                 "changelog record has flags of $flags"
11105
11106         # define CLF_UNLINK_LAST 0x0001
11107         # unlink a file having nlink = 1 (changelog flag 0x1)
11108         rm -f $DIR/$tdir/foo2_161c
11109         $LFS changelog $MDT0 | grep UNLNK
11110         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11111         $LFS changelog_clear $MDT0 $CL_USER 0
11112         if [ x$flags != "x0x1" ]; then
11113                 error "flag $flags is not 0x1"
11114         fi
11115         echo "unlink a file having nlink = 1," \
11116                 "changelog record has flags of $flags"
11117
11118         # unlink a file having nlink > 1 (changelog flag 0x0)
11119         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11120         rm -f $DIR/$tdir/foobar_161c
11121         $LFS changelog $MDT0 | grep UNLNK
11122         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11123         $LFS changelog_clear $MDT0 $CL_USER 0
11124         if [ x$flags != "x0x0" ]; then
11125                 error "flag $flags is not 0x0"
11126         fi
11127         echo "unlink a file having nlink > 1," \
11128                 "changelog record has flags of $flags"
11129         cleanup_changelog
11130 }
11131 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11132
11133 check_path() {
11134     local expected=$1
11135     shift
11136     local fid=$2
11137
11138     local path=$(${LFS} fid2path $*)
11139     # Remove the '//' indicating a remote directory
11140     path=$(echo $path | sed 's#//#/#g')
11141     RC=$?
11142
11143     if [ $RC -ne 0 ]; then
11144         err17935 "path looked up of $expected failed. Error $RC"
11145         return $RC
11146     elif [ "${path}" != "${expected}" ]; then
11147         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11148         return 2
11149     fi
11150     echo "fid $fid resolves to path $path (expected $expected)"
11151 }
11152
11153 test_162a() { # was test_162
11154         # Make changes to filesystem
11155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11156         test_mkdir -p -c1 $DIR/$tdir/d2
11157         touch $DIR/$tdir/d2/$tfile
11158         touch $DIR/$tdir/d2/x1
11159         touch $DIR/$tdir/d2/x2
11160         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11161         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11162         # regular file
11163         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11164         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11165                 error "check path $tdir/d2/$tfile failed"
11166
11167         # softlink
11168         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11169         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11170         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11171                 error "check path $tdir/d2/p/q/r/slink failed"
11172
11173         # softlink to wrong file
11174         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11175         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11176         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11177                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11178
11179         # hardlink
11180         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11181         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11182         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11183         # fid2path dir/fsname should both work
11184         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11185                 error "check path $tdir/d2/a/b/c/new_file failed"
11186         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11187                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11188
11189         # hardlink count: check that there are 2 links
11190         # Doesnt work with CMD yet: 17935
11191         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11192                 err17935 "expected 2 links"
11193
11194         # hardlink indexing: remove the first link
11195         rm $DIR/$tdir/d2/p/q/r/hlink
11196         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11197                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11198
11199         return 0
11200 }
11201 run_test 162a "path lookup sanity"
11202
11203 test_162b() {
11204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11205         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11206
11207         mkdir $DIR/$tdir
11208         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11209                                 error "create striped dir failed"
11210
11211         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11212                                         tail -n 1 | awk '{print $2}')
11213         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11214
11215         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11216         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11217
11218         # regular file
11219         for ((i=0;i<5;i++)); do
11220                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11221                         error "get fid for f$i failed"
11222                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11223                         error "check path $tdir/striped_dir/f$i failed"
11224
11225                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11226                         error "get fid for d$i failed"
11227                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11228                         error "check path $tdir/striped_dir/d$i failed"
11229         done
11230
11231         return 0
11232 }
11233 run_test 162b "striped directory path lookup sanity"
11234
11235 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11236 test_162c() {
11237         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11238                 skip "Need MDS version at least 2.7.51" && return
11239         test_mkdir $DIR/$tdir.local
11240         test_mkdir $DIR/$tdir.remote
11241         local lpath=$tdir.local
11242         local rpath=$tdir.remote
11243
11244         for ((i = 0; i <= 101; i++)); do
11245                 lpath="$lpath/$i"
11246                 mkdir $DIR/$lpath
11247                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11248                         error "get fid for local directory $DIR/$lpath failed"
11249                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11250                         error "check path for local directory $DIR/$lpath failed"
11251
11252                 rpath="$rpath/$i"
11253                 test_mkdir $DIR/$rpath
11254                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11255                         error "get fid for remote directory $DIR/$rpath failed"
11256                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11257                         error "check path for remote directory $DIR/$rpath failed"
11258         done
11259
11260         return 0
11261 }
11262 run_test 162c "fid2path works with paths 100 or more directories deep"
11263
11264 test_169() {
11265         # do directio so as not to populate the page cache
11266         log "creating a 10 Mb file"
11267         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11268         log "starting reads"
11269         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11270         log "truncating the file"
11271         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11272         log "killing dd"
11273         kill %+ || true # reads might have finished
11274         echo "wait until dd is finished"
11275         wait
11276         log "removing the temporary file"
11277         rm -rf $DIR/$tfile || error "tmp file removal failed"
11278 }
11279 run_test 169 "parallel read and truncate should not deadlock"
11280
11281 test_170() {
11282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11283         $LCTL clear     # bug 18514
11284         $LCTL debug_daemon start $TMP/${tfile}_log_good
11285         touch $DIR/$tfile
11286         $LCTL debug_daemon stop
11287         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11288                error "sed failed to read log_good"
11289
11290         $LCTL debug_daemon start $TMP/${tfile}_log_good
11291         rm -rf $DIR/$tfile
11292         $LCTL debug_daemon stop
11293
11294         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11295                error "lctl df log_bad failed"
11296
11297         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11298         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11299
11300         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11301         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11302
11303         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11304                 error "bad_line good_line1 good_line2 are empty"
11305
11306         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11307         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11308         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11309
11310         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11311         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11312         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11313
11314         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11315                 error "bad_line_new good_line_new are empty"
11316
11317         local expected_good=$((good_line1 + good_line2*2))
11318
11319         rm -f $TMP/${tfile}*
11320         # LU-231, short malformed line may not be counted into bad lines
11321         if [ $bad_line -ne $bad_line_new ] &&
11322                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11323                 error "expected $bad_line bad lines, but got $bad_line_new"
11324                 return 1
11325         fi
11326
11327         if [ $expected_good -ne $good_line_new ]; then
11328                 error "expected $expected_good good lines, but got $good_line_new"
11329                 return 2
11330         fi
11331         true
11332 }
11333 run_test 170 "test lctl df to handle corrupted log ====================="
11334
11335 test_171() { # bug20592
11336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11337 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11338         $LCTL set_param fail_loc=0x50e
11339         $LCTL set_param fail_val=3000
11340         multiop_bg_pause $DIR/$tfile O_s || true
11341         local MULTIPID=$!
11342         kill -USR1 $MULTIPID
11343         # cause log dump
11344         sleep 3
11345         wait $MULTIPID
11346         if dmesg | grep "recursive fault"; then
11347                 error "caught a recursive fault"
11348         fi
11349         $LCTL set_param fail_loc=0
11350         true
11351 }
11352 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11353
11354 # it would be good to share it with obdfilter-survey/iokit-libecho code
11355 setup_obdecho_osc () {
11356         local rc=0
11357         local ost_nid=$1
11358         local obdfilter_name=$2
11359         echo "Creating new osc for $obdfilter_name on $ost_nid"
11360         # make sure we can find loopback nid
11361         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11362
11363         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11364                            ${obdfilter_name}_osc_UUID || rc=2; }
11365         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11366                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11367         return $rc
11368 }
11369
11370 cleanup_obdecho_osc () {
11371         local obdfilter_name=$1
11372         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11373         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11374         return 0
11375 }
11376
11377 obdecho_test() {
11378         local OBD=$1
11379         local node=$2
11380         local pages=${3:-64}
11381         local rc=0
11382         local id
11383
11384         local count=10
11385         local obd_size=$(get_obd_size $node $OBD)
11386         local page_size=$(get_page_size $node)
11387         if [[ -n "$obd_size" ]]; then
11388                 local new_count=$((obd_size / (pages * page_size / 1024)))
11389                 [[ $new_count -ge $count ]] || count=$new_count
11390         fi
11391
11392         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11393         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11394                            rc=2; }
11395         if [ $rc -eq 0 ]; then
11396             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11397             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11398         fi
11399         echo "New object id is $id"
11400         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11401                            rc=4; }
11402         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11403                            "test_brw $count w v $pages $id" || rc=4; }
11404         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11405                            rc=4; }
11406         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11407                                         "cleanup" || rc=5; }
11408         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11409                                         "detach" || rc=6; }
11410         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11411         return $rc
11412 }
11413
11414 test_180a() {
11415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11416         remote_ost_nodsh && skip "remote OST with nodsh" && return
11417         local rc=0
11418         local rmmod_local=0
11419
11420         if ! module_loaded obdecho; then
11421             load_module obdecho/obdecho
11422             rmmod_local=1
11423         fi
11424
11425         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11426         local host=$(lctl get_param -n osc.$osc.import |
11427                              awk '/current_connection:/ {print $2}' )
11428         local target=$(lctl get_param -n osc.$osc.import |
11429                              awk '/target:/ {print $2}' )
11430         target=${target%_UUID}
11431
11432         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11433         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11434         [[ -n $target ]] && cleanup_obdecho_osc $target
11435         [ $rmmod_local -eq 1 ] && rmmod obdecho
11436         return $rc
11437 }
11438 run_test 180a "test obdecho on osc"
11439
11440 test_180b() {
11441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11442         remote_ost_nodsh && skip "remote OST with nodsh" && return
11443         local rc=0
11444         local rmmod_remote=0
11445
11446         do_facet ost1 "lsmod | grep -q obdecho || "                      \
11447                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
11448                       "modprobe obdecho; }" && rmmod_remote=1
11449         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11450         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11451         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
11452         return $rc
11453 }
11454 run_test 180b "test obdecho directly on obdfilter"
11455
11456 test_180c() { # LU-2598
11457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11458         remote_ost_nodsh && skip "remote OST with nodsh" && return
11459         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11460                 skip "Need MDS version at least 2.4.0" && return
11461
11462         local rc=0
11463         local rmmod_remote=false
11464         local pages=16384 # 64MB bulk I/O RPC size
11465         local target
11466
11467         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11468                 rmmod_remote=true || error "failed to load module obdecho"
11469
11470         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11471                 head -n1)
11472         if [ -n "$target" ]; then
11473                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11474         else
11475                 echo "there is no obdfilter target on ost1"
11476                 rc=2
11477         fi
11478         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11479         return $rc
11480 }
11481 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11482
11483 test_181() { # bug 22177
11484         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11485         # create enough files to index the directory
11486         createmany -o $DIR/$tdir/foobar 4000
11487         # print attributes for debug purpose
11488         lsattr -d .
11489         # open dir
11490         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11491         MULTIPID=$!
11492         # remove the files & current working dir
11493         unlinkmany $DIR/$tdir/foobar 4000
11494         rmdir $DIR/$tdir
11495         kill -USR1 $MULTIPID
11496         wait $MULTIPID
11497         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11498         return 0
11499 }
11500 run_test 181 "Test open-unlinked dir ========================"
11501
11502 test_182() {
11503         local fcount=1000
11504         local tcount=10
11505
11506         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11507
11508         $LCTL set_param mdc.*.rpc_stats=clear
11509
11510         for (( i = 0; i < $tcount; i++ )) ; do
11511                 mkdir $DIR/$tdir/$i
11512         done
11513
11514         for (( i = 0; i < $tcount; i++ )) ; do
11515                 createmany -o $DIR/$tdir/$i/f- $fcount &
11516         done
11517         wait
11518
11519         for (( i = 0; i < $tcount; i++ )) ; do
11520                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11521         done
11522         wait
11523
11524         $LCTL get_param mdc.*.rpc_stats
11525
11526         rm -rf $DIR/$tdir
11527 }
11528 run_test 182 "Test parallel modify metadata operations ================"
11529
11530 test_183() { # LU-2275
11531         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11532         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11533                 skip "Need MDS version at least 2.3.56" && return
11534
11535         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11536         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11537         echo aaa > $DIR/$tdir/$tfile
11538
11539 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11540         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11541
11542         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11543         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11544
11545         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11546
11547         # Flush negative dentry cache
11548         touch $DIR/$tdir/$tfile
11549
11550         # We are not checking for any leaked references here, they'll
11551         # become evident next time we do cleanup with module unload.
11552         rm -rf $DIR/$tdir
11553 }
11554 run_test 183 "No crash or request leak in case of strange dispositions ========"
11555
11556 # test suite 184 is for LU-2016, LU-2017
11557 test_184a() {
11558         check_swap_layouts_support && return 0
11559
11560         dir0=$DIR/$tdir/$testnum
11561         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11562         ref1=/etc/passwd
11563         ref2=/etc/group
11564         file1=$dir0/f1
11565         file2=$dir0/f2
11566         $SETSTRIPE -c1 $file1
11567         cp $ref1 $file1
11568         $SETSTRIPE -c2 $file2
11569         cp $ref2 $file2
11570         gen1=$($GETSTRIPE -g $file1)
11571         gen2=$($GETSTRIPE -g $file2)
11572
11573         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11574         gen=$($GETSTRIPE -g $file1)
11575         [[ $gen1 != $gen ]] ||
11576                 "Layout generation on $file1 does not change"
11577         gen=$($GETSTRIPE -g $file2)
11578         [[ $gen2 != $gen ]] ||
11579                 "Layout generation on $file2 does not change"
11580
11581         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11582         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11583 }
11584 run_test 184a "Basic layout swap"
11585
11586 test_184b() {
11587         check_swap_layouts_support && return 0
11588
11589         dir0=$DIR/$tdir/$testnum
11590         mkdir -p $dir0 || error "creating dir $dir0"
11591         file1=$dir0/f1
11592         file2=$dir0/f2
11593         file3=$dir0/f3
11594         dir1=$dir0/d1
11595         dir2=$dir0/d2
11596         mkdir $dir1 $dir2
11597         $SETSTRIPE -c1 $file1
11598         $SETSTRIPE -c2 $file2
11599         $SETSTRIPE -c1 $file3
11600         chown $RUNAS_ID $file3
11601         gen1=$($GETSTRIPE -g $file1)
11602         gen2=$($GETSTRIPE -g $file2)
11603
11604         $LFS swap_layouts $dir1 $dir2 &&
11605                 error "swap of directories layouts should fail"
11606         $LFS swap_layouts $dir1 $file1 &&
11607                 error "swap of directory and file layouts should fail"
11608         $RUNAS $LFS swap_layouts $file1 $file2 &&
11609                 error "swap of file we cannot write should fail"
11610         $LFS swap_layouts $file1 $file3 &&
11611                 error "swap of file with different owner should fail"
11612         /bin/true # to clear error code
11613 }
11614 run_test 184b "Forbidden layout swap (will generate errors)"
11615
11616 test_184c() {
11617         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11618         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11619         check_swap_layouts_support && return 0
11620
11621         local dir0=$DIR/$tdir/$testnum
11622         mkdir -p $dir0 || error "creating dir $dir0"
11623
11624         local ref1=$dir0/ref1
11625         local ref2=$dir0/ref2
11626         local file1=$dir0/file1
11627         local file2=$dir0/file2
11628         # create a file large enough for the concurrent test
11629         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11630         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11631         echo "ref file size: ref1($(stat -c %s $ref1))," \
11632              "ref2($(stat -c %s $ref2))"
11633
11634         cp $ref2 $file2
11635         dd if=$ref1 of=$file1 bs=16k &
11636         local DD_PID=$!
11637
11638         # Make sure dd starts to copy file
11639         while [ ! -f $file1 ]; do sleep 0.1; done
11640
11641         $LFS swap_layouts $file1 $file2
11642         local rc=$?
11643         wait $DD_PID
11644         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11645         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11646
11647         # how many bytes copied before swapping layout
11648         local copied=$(stat -c %s $file2)
11649         local remaining=$(stat -c %s $ref1)
11650         remaining=$((remaining - copied))
11651         echo "Copied $copied bytes before swapping layout..."
11652
11653         cmp -n $copied $file1 $ref2 | grep differ &&
11654                 error "Content mismatch [0, $copied) of ref2 and file1"
11655         cmp -n $copied $file2 $ref1 ||
11656                 error "Content mismatch [0, $copied) of ref1 and file2"
11657         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11658                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11659
11660         # clean up
11661         rm -f $ref1 $ref2 $file1 $file2
11662 }
11663 run_test 184c "Concurrent write and layout swap"
11664
11665 test_184d() {
11666         check_swap_layouts_support && return 0
11667         [ -z "$(which getfattr 2>/dev/null)" ] &&
11668                 skip "no getfattr command" && return 0
11669
11670         local file1=$DIR/$tdir/$tfile-1
11671         local file2=$DIR/$tdir/$tfile-2
11672         local file3=$DIR/$tdir/$tfile-3
11673         local lovea1
11674         local lovea2
11675
11676         mkdir -p $DIR/$tdir
11677         touch $file1 || error "create $file1 failed"
11678         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11679                 error "create $file2 failed"
11680         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11681                 error "create $file3 failed"
11682         lovea1=$($LFS getstripe $file1 | sed 1d)
11683
11684         $LFS swap_layouts $file2 $file3 ||
11685                 error "swap $file2 $file3 layouts failed"
11686         $LFS swap_layouts $file1 $file2 ||
11687                 error "swap $file1 $file2 layouts failed"
11688
11689         lovea2=$($LFS getstripe $file2 | sed 1d)
11690         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11691
11692         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11693         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11694 }
11695 run_test 184d "allow stripeless layouts swap"
11696
11697 test_184e() {
11698         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11699                 { skip "Need MDS version at least 2.6.94"; return 0; }
11700         check_swap_layouts_support && return 0
11701         [ -z "$(which getfattr 2>/dev/null)" ] &&
11702                 skip "no getfattr command" && return 0
11703
11704         local file1=$DIR/$tdir/$tfile-1
11705         local file2=$DIR/$tdir/$tfile-2
11706         local file3=$DIR/$tdir/$tfile-3
11707         local lovea
11708
11709         mkdir -p $DIR/$tdir
11710         touch $file1 || error "create $file1 failed"
11711         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11712                 error "create $file2 failed"
11713         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11714                 error "create $file3 failed"
11715
11716         $LFS swap_layouts $file1 $file2 ||
11717                 error "swap $file1 $file2 layouts failed"
11718
11719         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11720         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11721
11722         echo 123 > $file1 || error "Should be able to write into $file1"
11723
11724         $LFS swap_layouts $file1 $file3 ||
11725                 error "swap $file1 $file3 layouts failed"
11726
11727         echo 123 > $file1 || error "Should be able to write into $file1"
11728
11729         rm -rf $file1 $file2 $file3
11730 }
11731 run_test 184e "Recreate layout after stripeless layout swaps"
11732
11733 test_185() { # LU-2441
11734         # LU-3553 - no volatile file support in old servers
11735         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11736                 { skip "Need MDS version at least 2.3.60"; return 0; }
11737
11738         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11739         touch $DIR/$tdir/spoo
11740         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11741         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11742                 error "cannot create/write a volatile file"
11743         [ "$FILESET" == "" ] &&
11744         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11745                 error "FID is still valid after close"
11746
11747         multiop_bg_pause $DIR/$tdir vVw4096_c
11748         local multi_pid=$!
11749
11750         local OLD_IFS=$IFS
11751         IFS=":"
11752         local fidv=($fid)
11753         IFS=$OLD_IFS
11754         # assume that the next FID for this client is sequential, since stdout
11755         # is unfortunately eaten by multiop_bg_pause
11756         local n=$((${fidv[1]} + 1))
11757         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11758         if [ "$FILESET" == "" ]; then
11759                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11760                         error "FID is missing before close"
11761         fi
11762         kill -USR1 $multi_pid
11763         # 1 second delay, so if mtime change we will see it
11764         sleep 1
11765         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11766         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11767 }
11768 run_test 185 "Volatile file support"
11769
11770 test_187a() {
11771         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11772         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11773                 skip "Need MDS version at least 2.3.0" && return
11774
11775         local dir0=$DIR/$tdir/$testnum
11776         mkdir -p $dir0 || error "creating dir $dir0"
11777
11778         local file=$dir0/file1
11779         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11780         local dv1=$($LFS data_version $file)
11781         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11782         local dv2=$($LFS data_version $file)
11783         [[ $dv1 != $dv2 ]] ||
11784                 error "data version did not change on write $dv1 == $dv2"
11785
11786         # clean up
11787         rm -f $file1
11788 }
11789 run_test 187a "Test data version change"
11790
11791 test_187b() {
11792         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11793         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11794                 skip "Need MDS version at least 2.3.0" && return
11795
11796         local dir0=$DIR/$tdir/$testnum
11797         mkdir -p $dir0 || error "creating dir $dir0"
11798
11799         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11800         [[ ${DV[0]} != ${DV[1]} ]] ||
11801                 error "data version did not change on write"\
11802                       " ${DV[0]} == ${DV[1]}"
11803
11804         # clean up
11805         rm -f $file1
11806 }
11807 run_test 187b "Test data version change on volatile file"
11808
11809 test_200() {
11810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11811         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11812         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11813
11814         local POOL=${POOL:-cea1}
11815         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11816         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11817         # Pool OST targets
11818         local first_ost=0
11819         local last_ost=$(($OSTCOUNT - 1))
11820         local ost_step=2
11821         local ost_list=$(seq $first_ost $ost_step $last_ost)
11822         local ost_range="$first_ost $last_ost $ost_step"
11823         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11824         local file_dir=$POOL_ROOT/file_tst
11825         local subdir=$test_path/subdir
11826
11827         local rc=0
11828         while : ; do
11829                 # former test_200a test_200b
11830                 pool_add $POOL                          || { rc=$? ; break; }
11831                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11832                 # former test_200c test_200d
11833                 mkdir -p $test_path
11834                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11835                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11836                 mkdir -p $subdir
11837                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11838                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11839                                                         || { rc=$? ; break; }
11840                 # former test_200e test_200f
11841                 local files=$((OSTCOUNT*3))
11842                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11843                                                         || { rc=$? ; break; }
11844                 pool_create_files $POOL $file_dir $files "$ost_list" \
11845                                                         || { rc=$? ; break; }
11846                 # former test_200g test_200h
11847                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11848                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11849
11850                 # former test_201a test_201b test_201c
11851                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11852
11853                 local f=$test_path/$tfile
11854                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11855                 pool_remove $POOL $f                    || { rc=$? ; break; }
11856                 break
11857         done
11858
11859         cleanup_pools
11860         return $rc
11861 }
11862 run_test 200 "OST pools"
11863
11864 # usage: default_attr <count | size | offset>
11865 default_attr() {
11866         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11867 }
11868
11869 # usage: check_default_stripe_attr
11870 check_default_stripe_attr() {
11871         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11872         case $1 in
11873         --stripe-count|--count)
11874                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11875         --stripe-size|--size)
11876                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11877         --stripe-index|--index)
11878                 EXPECTED=-1;;
11879         *)
11880                 error "unknown getstripe attr '$1'"
11881         esac
11882
11883         [ $ACTUAL != $EXPECTED ] &&
11884                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11885 }
11886
11887 test_204a() {
11888         test_mkdir -p $DIR/$tdir
11889         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11890
11891         check_default_stripe_attr --stripe-count
11892         check_default_stripe_attr --stripe-size
11893         check_default_stripe_attr --stripe-index
11894
11895         return 0
11896 }
11897 run_test 204a "Print default stripe attributes ================="
11898
11899 test_204b() {
11900         test_mkdir -p $DIR/$tdir
11901         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11902
11903         check_default_stripe_attr --stripe-size
11904         check_default_stripe_attr --stripe-index
11905
11906         return 0
11907 }
11908 run_test 204b "Print default stripe size and offset  ==========="
11909
11910 test_204c() {
11911         test_mkdir -p $DIR/$tdir
11912         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11913
11914         check_default_stripe_attr --stripe-count
11915         check_default_stripe_attr --stripe-index
11916
11917         return 0
11918 }
11919 run_test 204c "Print default stripe count and offset ==========="
11920
11921 test_204d() {
11922         test_mkdir -p $DIR/$tdir
11923         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11924
11925         check_default_stripe_attr --stripe-count
11926         check_default_stripe_attr --stripe-size
11927
11928         return 0
11929 }
11930 run_test 204d "Print default stripe count and size ============="
11931
11932 test_204e() {
11933         test_mkdir -p $DIR/$tdir
11934         $SETSTRIPE -d $DIR/$tdir
11935
11936         check_default_stripe_attr --stripe-count --raw
11937         check_default_stripe_attr --stripe-size --raw
11938         check_default_stripe_attr --stripe-index --raw
11939
11940         return 0
11941 }
11942 run_test 204e "Print raw stripe attributes ================="
11943
11944 test_204f() {
11945         test_mkdir -p $DIR/$tdir
11946         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11947
11948         check_default_stripe_attr --stripe-size --raw
11949         check_default_stripe_attr --stripe-index --raw
11950
11951         return 0
11952 }
11953 run_test 204f "Print raw stripe size and offset  ==========="
11954
11955 test_204g() {
11956         test_mkdir -p $DIR/$tdir
11957         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11958
11959         check_default_stripe_attr --stripe-count --raw
11960         check_default_stripe_attr --stripe-index --raw
11961
11962         return 0
11963 }
11964 run_test 204g "Print raw stripe count and offset ==========="
11965
11966 test_204h() {
11967         test_mkdir -p $DIR/$tdir
11968         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11969
11970         check_default_stripe_attr --stripe-count --raw
11971         check_default_stripe_attr --stripe-size --raw
11972
11973         return 0
11974 }
11975 run_test 204h "Print raw stripe count and size ============="
11976
11977 # Figure out which job scheduler is being used, if any,
11978 # or use a fake one
11979 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11980         JOBENV=SLURM_JOB_ID
11981 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11982         JOBENV=LSB_JOBID
11983 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11984         JOBENV=PBS_JOBID
11985 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11986         JOBENV=LOADL_STEP_ID
11987 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11988         JOBENV=JOB_ID
11989 else
11990         $LCTL list_param jobid_name > /dev/null 2>&1
11991         if [ $? -eq 0 ]; then
11992                 JOBENV=nodelocal
11993         else
11994                 JOBENV=FAKE_JOBID
11995         fi
11996 fi
11997
11998 verify_jobstats() {
11999         local cmd=($1)
12000         shift
12001         local facets="$@"
12002
12003 # we don't really need to clear the stats for this test to work, since each
12004 # command has a unique jobid, but it makes debugging easier if needed.
12005 #       for facet in $facets; do
12006 #               local dev=$(convert_facet2label $facet)
12007 #               # clear old jobstats
12008 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12009 #       done
12010
12011         # use a new JobID for each test, or we might see an old one
12012         [ "$JOBENV" = "FAKE_JOBID" ] &&
12013                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12014
12015         JOBVAL=${!JOBENV}
12016
12017         [ "$JOBENV" = "nodelocal" ] && {
12018                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12019                 $LCTL set_param jobid_name=$FAKE_JOBID
12020                 JOBVAL=$FAKE_JOBID
12021         }
12022
12023         log "Test: ${cmd[*]}"
12024         log "Using JobID environment variable $JOBENV=$JOBVAL"
12025
12026         if [ $JOBENV = "FAKE_JOBID" ]; then
12027                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12028         else
12029                 ${cmd[*]}
12030         fi
12031
12032         # all files are created on OST0000
12033         for facet in $facets; do
12034                 local stats="*.$(convert_facet2label $facet).job_stats"
12035                 if [ $(do_facet $facet lctl get_param $stats |
12036                        grep -c $JOBVAL) -ne 1 ]; then
12037                         do_facet $facet lctl get_param $stats
12038                         error "No jobstats for $JOBVAL found on $facet::$stats"
12039                 fi
12040         done
12041 }
12042
12043 jobstats_set() {
12044         trap 0
12045         NEW_JOBENV=${1:-$OLD_JOBENV}
12046         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12047         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12048 }
12049
12050 cleanup_205() {
12051         trap 0
12052         do_facet $SINGLEMDS \
12053                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12054         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12055         cleanup_changelog
12056 }
12057
12058 test_205() { # Job stats
12059         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12060         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12061         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12062         remote_ost_nodsh && skip "remote OST with nodsh" && return
12063
12064         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12065                 skip "Server doesn't support jobstats" && return 0
12066         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12067
12068         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12069         if [ $OLD_JOBENV != $JOBENV ]; then
12070                 jobstats_set $JOBENV
12071                 trap cleanup_205 EXIT
12072         fi
12073
12074         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12075         echo "Registered as changelog user $CL_USER"
12076
12077         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12078                        lctl get_param -n mdt.*.job_cleanup_interval)
12079         local interval_new=5
12080         do_facet $SINGLEMDS \
12081                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12082         local start=$SECONDS
12083
12084         local cmd
12085         # mkdir
12086         cmd="mkdir $DIR/$tdir"
12087         verify_jobstats "$cmd" "$SINGLEMDS"
12088         # rmdir
12089         cmd="rmdir $DIR/$tdir"
12090         verify_jobstats "$cmd" "$SINGLEMDS"
12091         # mkdir on secondary MDT
12092         if [ $MDSCOUNT -gt 1 ]; then
12093                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12094                 verify_jobstats "$cmd" "mds2"
12095         fi
12096         # mknod
12097         cmd="mknod $DIR/$tfile c 1 3"
12098         verify_jobstats "$cmd" "$SINGLEMDS"
12099         # unlink
12100         cmd="rm -f $DIR/$tfile"
12101         verify_jobstats "$cmd" "$SINGLEMDS"
12102         # create all files on OST0000 so verify_jobstats can find OST stats
12103         # open & close
12104         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12105         verify_jobstats "$cmd" "$SINGLEMDS"
12106         # setattr
12107         cmd="touch $DIR/$tfile"
12108         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12109         # write
12110         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12111         verify_jobstats "$cmd" "ost1"
12112         # read
12113         cancel_lru_locks osc
12114         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12115         verify_jobstats "$cmd" "ost1"
12116         # truncate
12117         cmd="$TRUNCATE $DIR/$tfile 0"
12118         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12119         # rename
12120         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12121         verify_jobstats "$cmd" "$SINGLEMDS"
12122         # jobstats expiry - sleep until old stats should be expired
12123         local left=$((interval_new + 5 - (SECONDS - start)))
12124         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12125                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12126                         "0" $left
12127         cmd="mkdir $DIR/$tdir.expire"
12128         verify_jobstats "$cmd" "$SINGLEMDS"
12129         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12130             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12131
12132         # Ensure that jobid are present in changelog (if supported by MDS)
12133         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12134         then
12135                 $LFS changelog $MDT0 | tail -9
12136                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12137                 [ $jobids -eq 9 ] ||
12138                         error "Wrong changelog jobid count $jobids != 9"
12139
12140                 # LU-5862
12141                 JOBENV="disable"
12142                 jobstats_set $JOBENV
12143                 touch $DIR/$tfile
12144                 $LFS changelog $MDT0 | tail -1
12145                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12146                 [ $jobids -eq 0 ] ||
12147                         error "Unexpected jobids when jobid_var=$JOBENV"
12148         fi
12149
12150         cleanup_205
12151 }
12152 run_test 205 "Verify job stats"
12153
12154 # LU-1480, LU-1773 and LU-1657
12155 test_206() {
12156         mkdir -p $DIR/$tdir
12157         $SETSTRIPE -c -1 $DIR/$tdir
12158 #define OBD_FAIL_LOV_INIT 0x1403
12159         $LCTL set_param fail_loc=0xa0001403
12160         $LCTL set_param fail_val=1
12161         touch $DIR/$tdir/$tfile || true
12162 }
12163 run_test 206 "fail lov_init_raid0() doesn't lbug"
12164
12165 test_207a() {
12166         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12167         local fsz=`stat -c %s $DIR/$tfile`
12168         cancel_lru_locks mdc
12169
12170         # do not return layout in getattr intent
12171 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12172         $LCTL set_param fail_loc=0x170
12173         local sz=`stat -c %s $DIR/$tfile`
12174
12175         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12176
12177         rm -rf $DIR/$tfile
12178 }
12179 run_test 207a "can refresh layout at glimpse"
12180
12181 test_207b() {
12182         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12183         local cksum=`md5sum $DIR/$tfile`
12184         local fsz=`stat -c %s $DIR/$tfile`
12185         cancel_lru_locks mdc
12186         cancel_lru_locks osc
12187
12188         # do not return layout in getattr intent
12189 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12190         $LCTL set_param fail_loc=0x171
12191
12192         # it will refresh layout after the file is opened but before read issues
12193         echo checksum is "$cksum"
12194         echo "$cksum" |md5sum -c --quiet || error "file differs"
12195
12196         rm -rf $DIR/$tfile
12197 }
12198 run_test 207b "can refresh layout at open"
12199
12200 test_208() {
12201         # FIXME: in this test suite, only RD lease is used. This is okay
12202         # for now as only exclusive open is supported. After generic lease
12203         # is done, this test suite should be revised. - Jinshan
12204
12205         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12206         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12207                 { skip "Need MDS version at least 2.4.52"; return 0; }
12208
12209         echo "==== test 1: verify get lease work"
12210         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12211
12212         echo "==== test 2: verify lease can be broken by upcoming open"
12213         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12214         local PID=$!
12215         sleep 1
12216
12217         $MULTIOP $DIR/$tfile oO_RDONLY:c
12218         kill -USR1 $PID && wait $PID || error "break lease error"
12219
12220         echo "==== test 3: verify lease can't be granted if an open already exists"
12221         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12222         local PID=$!
12223         sleep 1
12224
12225         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12226         kill -USR1 $PID && wait $PID || error "open file error"
12227
12228         echo "==== test 4: lease can sustain over recovery"
12229         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12230         PID=$!
12231         sleep 1
12232
12233         fail mds1
12234
12235         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12236
12237         echo "==== test 5: lease broken can't be regained by replay"
12238         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12239         PID=$!
12240         sleep 1
12241
12242         # open file to break lease and then recovery
12243         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12244         fail mds1
12245
12246         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12247
12248         rm -f $DIR/$tfile
12249 }
12250 run_test 208 "Exclusive open"
12251
12252 test_209() {
12253         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12254                 skip_env "must have disp_stripe" && return
12255
12256         touch $DIR/$tfile
12257         sync; sleep 5; sync;
12258
12259         echo 3 > /proc/sys/vm/drop_caches
12260         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12261
12262         # open/close 500 times
12263         for i in $(seq 500); do
12264                 cat $DIR/$tfile
12265         done
12266
12267         echo 3 > /proc/sys/vm/drop_caches
12268         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12269
12270         echo "before: $req_before, after: $req_after"
12271         [ $((req_after - req_before)) -ge 300 ] &&
12272                 error "open/close requests are not freed"
12273         return 0
12274 }
12275 run_test 209 "read-only open/close requests should be freed promptly"
12276
12277 test_212() {
12278         size=`date +%s`
12279         size=$((size % 8192 + 1))
12280         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12281         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12282         rm -f $DIR/f212 $DIR/f212.xyz
12283 }
12284 run_test 212 "Sendfile test ============================================"
12285
12286 test_213() {
12287         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12288         cancel_lru_locks osc
12289         lctl set_param fail_loc=0x8000040f
12290         # generate a read lock
12291         cat $DIR/$tfile > /dev/null
12292         # write to the file, it will try to cancel the above read lock.
12293         cat /etc/hosts >> $DIR/$tfile
12294 }
12295 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12296
12297 test_214() { # for bug 20133
12298         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12299         for (( i=0; i < 340; i++ )) ; do
12300                 touch $DIR/$tdir/d214c/a$i
12301         done
12302
12303         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12304         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12305         ls $DIR/d214c || error "ls $DIR/d214c failed"
12306         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12307         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12308 }
12309 run_test 214 "hash-indexed directory test - bug 20133"
12310
12311 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12312 create_lnet_proc_files() {
12313         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12314         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12315
12316         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12317         rm -f "$TMP/lnet_$1.sys_tmp"
12318 }
12319
12320 # counterpart of create_lnet_proc_files
12321 remove_lnet_proc_files() {
12322         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12323 }
12324
12325 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12326 # 3rd arg as regexp for body
12327 check_lnet_proc_stats() {
12328         local l=$(cat "$TMP/lnet_$1" |wc -l)
12329         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12330
12331         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12332 }
12333
12334 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12335 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12336 # optional and can be regexp for 2nd line (lnet.routes case)
12337 check_lnet_proc_entry() {
12338         local blp=2          # blp stands for 'position of 1st line of body'
12339         [ -z "$5" ] || blp=3 # lnet.routes case
12340
12341         local l=$(cat "$TMP/lnet_$1" |wc -l)
12342         # subtracting one from $blp because the body can be empty
12343         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12344
12345         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12346                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12347
12348         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12349                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12350
12351         # bail out if any unexpected line happened
12352         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12353         [ "$?" != 0 ] || error "$2 misformatted"
12354 }
12355
12356 test_215() { # for bugs 18102, 21079, 21517
12357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12358         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12359         local P='[1-9][0-9]*'           # positive numeric
12360         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12361         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12362         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12363         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12364
12365         local L1 # regexp for 1st line
12366         local L2 # regexp for 2nd line (optional)
12367         local BR # regexp for the rest (body)
12368
12369         # lnet.stats should look as 11 space-separated non-negative numerics
12370         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12371         create_lnet_proc_files "stats"
12372         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12373         remove_lnet_proc_files "stats"
12374
12375         # lnet.routes should look like this:
12376         # Routing disabled/enabled
12377         # net hops priority state router
12378         # where net is a string like tcp0, hops > 0, priority >= 0,
12379         # state is up/down,
12380         # router is a string like 192.168.1.1@tcp2
12381         L1="^Routing (disabled|enabled)$"
12382         L2="^net +hops +priority +state +router$"
12383         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12384         create_lnet_proc_files "routes"
12385         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12386         remove_lnet_proc_files "routes"
12387
12388         # lnet.routers should look like this:
12389         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12390         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12391         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12392         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12393         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12394         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12395         create_lnet_proc_files "routers"
12396         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12397         remove_lnet_proc_files "routers"
12398
12399         # lnet.peers should look like this:
12400         # nid refs state last max rtr min tx min queue
12401         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12402         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12403         # numeric (0 or >0 or <0), queue >= 0.
12404         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12405         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12406         create_lnet_proc_files "peers"
12407         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12408         remove_lnet_proc_files "peers"
12409
12410         # lnet.buffers  should look like this:
12411         # pages count credits min
12412         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12413         L1="^pages +count +credits +min$"
12414         BR="^ +$N +$N +$I +$I$"
12415         create_lnet_proc_files "buffers"
12416         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12417         remove_lnet_proc_files "buffers"
12418
12419         # lnet.nis should look like this:
12420         # nid status alive refs peer rtr max tx min
12421         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12422         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12423         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12424         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12425         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12426         create_lnet_proc_files "nis"
12427         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12428         remove_lnet_proc_files "nis"
12429
12430         # can we successfully write to lnet.stats?
12431         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12432         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12433 }
12434 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12435
12436 test_216() { # bug 20317
12437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12438         remote_ost_nodsh && skip "remote OST with nodsh" && return
12439
12440         local node
12441         local facets=$(get_facets OST)
12442         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12443
12444         save_lustre_params client "osc.*.contention_seconds" > $p
12445         save_lustre_params $facets \
12446                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12447         save_lustre_params $facets \
12448                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12449         save_lustre_params $facets \
12450                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12451         clear_osc_stats
12452
12453         # agressive lockless i/o settings
12454         for node in $(osts_nodes); do
12455                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 2000000; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 0; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 60'
12456         done
12457         lctl set_param -n osc.*.contention_seconds 60
12458
12459         $DIRECTIO write $DIR/$tfile 0 10 4096
12460         $CHECKSTAT -s 40960 $DIR/$tfile
12461
12462         # disable lockless i/o
12463         for node in $(osts_nodes); do
12464                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 0; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 32; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 0'
12465         done
12466         lctl set_param -n osc.*.contention_seconds 0
12467         clear_osc_stats
12468
12469         dd if=/dev/zero of=$DIR/$tfile count=0
12470         $CHECKSTAT -s 0 $DIR/$tfile
12471
12472         restore_lustre_params <$p
12473         rm -f $p
12474         rm $DIR/$tfile
12475 }
12476 run_test 216 "check lockless direct write works and updates file size and kms correctly"
12477
12478 test_217() { # bug 22430
12479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12480         local node
12481         local nid
12482
12483         for node in $(nodes_list); do
12484                 nid=$(host_nids_address $node $NETTYPE)
12485                 if [[ $nid = *-* ]] ; then
12486                         echo "lctl ping $nid@$NETTYPE"
12487                         lctl ping $nid@$NETTYPE
12488                 else
12489                         echo "skipping $node (no hyphen detected)"
12490                 fi
12491         done
12492 }
12493 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12494
12495 test_218() {
12496        # do directio so as not to populate the page cache
12497        log "creating a 10 Mb file"
12498        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12499        log "starting reads"
12500        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12501        log "truncating the file"
12502        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12503        log "killing dd"
12504        kill %+ || true # reads might have finished
12505        echo "wait until dd is finished"
12506        wait
12507        log "removing the temporary file"
12508        rm -rf $DIR/$tfile || error "tmp file removal failed"
12509 }
12510 run_test 218 "parallel read and truncate should not deadlock ======================="
12511
12512 test_219() {
12513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12514         # write one partial page
12515         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12516         # set no grant so vvp_io_commit_write will do sync write
12517         $LCTL set_param fail_loc=0x411
12518         # write a full page at the end of file
12519         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12520
12521         $LCTL set_param fail_loc=0
12522         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12523         $LCTL set_param fail_loc=0x411
12524         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12525
12526         # LU-4201
12527         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12528         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12529 }
12530 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12531
12532 test_220() { #LU-325
12533         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12534         remote_ost_nodsh && skip "remote OST with nodsh" && return
12535         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12536         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12537         local OSTIDX=0
12538
12539         # create on MDT0000 so the last_id and next_id are correct
12540         mkdir $DIR/$tdir
12541         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12542         OST=${OST%_UUID}
12543
12544         # on the mdt's osc
12545         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12546         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12547                         osc.$mdtosc_proc1.prealloc_last_id)
12548         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12549                         osc.$mdtosc_proc1.prealloc_next_id)
12550
12551         $LFS df -i
12552
12553         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12554         #define OBD_FAIL_OST_ENOINO              0x229
12555         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12556         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12557         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12558
12559         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12560
12561         MDSOBJS=$((last_id - next_id))
12562         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12563
12564         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12565         echo "OST still has $count kbytes free"
12566
12567         echo "create $MDSOBJS files @next_id..."
12568         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12569
12570         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12571                         osc.$mdtosc_proc1.prealloc_last_id)
12572         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12573                         osc.$mdtosc_proc1.prealloc_next_id)
12574
12575         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12576         $LFS df -i
12577
12578         echo "cleanup..."
12579
12580         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12581         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12582
12583         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12584         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12585         echo "unlink $MDSOBJS files @$next_id..."
12586         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12587 }
12588 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12589
12590 test_221() {
12591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12592         dd if=`which date` of=$MOUNT/date oflag=sync
12593         chmod +x $MOUNT/date
12594
12595         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12596         $LCTL set_param fail_loc=0x80001401
12597
12598         $MOUNT/date > /dev/null
12599         rm -f $MOUNT/date
12600 }
12601 run_test 221 "make sure fault and truncate race to not cause OOM"
12602
12603 test_222a () {
12604         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12605        rm -rf $DIR/$tdir
12606        test_mkdir -p $DIR/$tdir
12607        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12608        createmany -o $DIR/$tdir/$tfile 10
12609        cancel_lru_locks mdc
12610        cancel_lru_locks osc
12611        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12612        $LCTL set_param fail_loc=0x31a
12613        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12614        $LCTL set_param fail_loc=0
12615        rm -r $DIR/$tdir
12616 }
12617 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12618
12619 test_222b () {
12620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12621         rm -rf $DIR/$tdir
12622         test_mkdir -p $DIR/$tdir
12623         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12624         createmany -o $DIR/$tdir/$tfile 10
12625         cancel_lru_locks mdc
12626         cancel_lru_locks osc
12627         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12628         $LCTL set_param fail_loc=0x31a
12629         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12630         $LCTL set_param fail_loc=0
12631 }
12632 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12633
12634 test_223 () {
12635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12636        rm -rf $DIR/$tdir
12637        test_mkdir -p $DIR/$tdir
12638        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12639        createmany -o $DIR/$tdir/$tfile 10
12640        cancel_lru_locks mdc
12641        cancel_lru_locks osc
12642        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12643        $LCTL set_param fail_loc=0x31b
12644        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12645        $LCTL set_param fail_loc=0
12646        rm -r $DIR/$tdir
12647 }
12648 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12649
12650 test_224a() { # LU-1039, MRP-303
12651         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12652         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12653         $LCTL set_param fail_loc=0x508
12654         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12655         $LCTL set_param fail_loc=0
12656         df $DIR
12657 }
12658 run_test 224a "Don't panic on bulk IO failure"
12659
12660 test_224b() { # LU-1039, MRP-303
12661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12662         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12663         cancel_lru_locks osc
12664         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12665         $LCTL set_param fail_loc=0x515
12666         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12667         $LCTL set_param fail_loc=0
12668         df $DIR
12669 }
12670 run_test 224b "Don't panic on bulk IO failure"
12671
12672 test_224c() { # LU-6441
12673         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12674         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12675
12676         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12677         save_writethrough $p
12678         set_cache writethrough on
12679
12680         local pages_per_rpc=$($LCTL get_param \
12681                                 osc.*.max_pages_per_rpc)
12682         local at_max=$($LCTL get_param -n at_max)
12683         local timeout=$($LCTL get_param -n timeout)
12684         local test_at="$LCTL get_param -n at_max"
12685         local param_at="$FSNAME.sys.at_max"
12686         local test_timeout="$LCTL get_param -n timeout"
12687         local param_timeout="$FSNAME.sys.timeout"
12688
12689         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12690
12691         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12692                 error "conf_param at_max=0 failed"
12693         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12694                 error "conf_param timeout=5 failed"
12695
12696         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12697         do_facet ost1 $LCTL set_param fail_loc=0x520
12698         $LFS setstripe -c 1 -i 0 $DIR/$tfile
12699         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12700         sync
12701         do_facet ost1 $LCTL set_param fail_loc=0
12702
12703         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12704                 error "conf_param at_max=$at_max failed"
12705         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12706                 $timeout || error "conf_param timeout=$timeout failed"
12707
12708         $LCTL set_param -n $pages_per_rpc
12709         restore_lustre_params < $p
12710         rm -f $p
12711 }
12712 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12713
12714 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12715 test_225a () {
12716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12717         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12718         if [ -z ${MDSSURVEY} ]; then
12719               skip_env "mds-survey not found" && return
12720         fi
12721
12722         [ $MDSCOUNT -ge 2 ] &&
12723                 skip "skipping now for more than one MDT" && return
12724
12725        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12726             { skip "Need MDS version at least 2.2.51"; return; }
12727
12728        local mds=$(facet_host $SINGLEMDS)
12729        local target=$(do_nodes $mds 'lctl dl' | \
12730                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12731
12732        local cmd1="file_count=1000 thrhi=4"
12733        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12734        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12735        local cmd="$cmd1 $cmd2 $cmd3"
12736
12737        rm -f ${TMP}/mds_survey*
12738        echo + $cmd
12739        eval $cmd || error "mds-survey with zero-stripe failed"
12740        cat ${TMP}/mds_survey*
12741        rm -f ${TMP}/mds_survey*
12742 }
12743 run_test 225a "Metadata survey sanity with zero-stripe"
12744
12745 test_225b () {
12746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12747         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12748         if [ -z ${MDSSURVEY} ]; then
12749               skip_env "mds-survey not found" && return
12750         fi
12751         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12752             { skip "Need MDS version at least 2.2.51"; return; }
12753
12754         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12755               skip_env "Need to mount OST to test" && return
12756         fi
12757
12758         [ $MDSCOUNT -ge 2 ] &&
12759                 skip "skipping now for more than one MDT" && return
12760        local mds=$(facet_host $SINGLEMDS)
12761        local target=$(do_nodes $mds 'lctl dl' | \
12762                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12763
12764        local cmd1="file_count=1000 thrhi=4"
12765        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12766        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12767        local cmd="$cmd1 $cmd2 $cmd3"
12768
12769        rm -f ${TMP}/mds_survey*
12770        echo + $cmd
12771        eval $cmd || error "mds-survey with stripe_count failed"
12772        cat ${TMP}/mds_survey*
12773        rm -f ${TMP}/mds_survey*
12774 }
12775 run_test 225b "Metadata survey sanity with stripe_count = 1"
12776
12777 mcreate_path2fid () {
12778         local mode=$1
12779         local major=$2
12780         local minor=$3
12781         local name=$4
12782         local desc=$5
12783         local path=$DIR/$tdir/$name
12784         local fid
12785         local rc
12786         local fid_path
12787
12788         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12789                 error "cannot create $desc"
12790
12791         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12792         rc=$?
12793         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12794
12795         fid_path=$($LFS fid2path $MOUNT $fid)
12796         rc=$?
12797         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12798
12799         [ "$path" == "$fid_path" ] ||
12800                 error "fid2path returned $fid_path, expected $path"
12801
12802         echo "pass with $path and $fid"
12803 }
12804
12805 test_226a () {
12806         rm -rf $DIR/$tdir
12807         mkdir -p $DIR/$tdir
12808
12809         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12810         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12811         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12812         mcreate_path2fid 0040666 0 0 dir "directory"
12813         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12814         mcreate_path2fid 0100666 0 0 file "regular file"
12815         mcreate_path2fid 0120666 0 0 link "symbolic link"
12816         mcreate_path2fid 0140666 0 0 sock "socket"
12817 }
12818 run_test 226a "call path2fid and fid2path on files of all type"
12819
12820 test_226b () {
12821         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12822         rm -rf $DIR/$tdir
12823         local MDTIDX=1
12824
12825         mkdir -p $DIR/$tdir
12826         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12827                 error "create remote directory failed"
12828         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12829         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12830                                 "character special file (null)"
12831         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12832                                 "character special file (no device)"
12833         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12834         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12835                                 "block special file (loop)"
12836         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12837         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12838         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12839 }
12840 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12841
12842 # LU-1299 Executing or running ldd on a truncated executable does not
12843 # cause an out-of-memory condition.
12844 test_227() {
12845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12846         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12847         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12848         chmod +x $MOUNT/date
12849
12850         $MOUNT/date > /dev/null
12851         ldd $MOUNT/date > /dev/null
12852         rm -f $MOUNT/date
12853 }
12854 run_test 227 "running truncated executable does not cause OOM"
12855
12856 # LU-1512 try to reuse idle OI blocks
12857 test_228a() {
12858         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12859         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12860         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12861                 skip "non-ldiskfs backend" && return
12862
12863         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12864         local myDIR=$DIR/$tdir
12865
12866         mkdir -p $myDIR
12867         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12868         $LCTL set_param fail_loc=0x80001002
12869         createmany -o $myDIR/t- 10000
12870         $LCTL set_param fail_loc=0
12871         # The guard is current the largest FID holder
12872         touch $myDIR/guard
12873         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12874                     tr -d '[')
12875         local IDX=$(($SEQ % 64))
12876
12877         do_facet $SINGLEMDS sync
12878         # Make sure journal flushed.
12879         sleep 6
12880         local blk1=$(do_facet $SINGLEMDS \
12881                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12882                      grep Blockcount | awk '{print $4}')
12883
12884         # Remove old files, some OI blocks will become idle.
12885         unlinkmany $myDIR/t- 10000
12886         # Create new files, idle OI blocks should be reused.
12887         createmany -o $myDIR/t- 2000
12888         do_facet $SINGLEMDS sync
12889         # Make sure journal flushed.
12890         sleep 6
12891         local blk2=$(do_facet $SINGLEMDS \
12892                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12893                      grep Blockcount | awk '{print $4}')
12894
12895         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12896 }
12897 run_test 228a "try to reuse idle OI blocks"
12898
12899 test_228b() {
12900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12901         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12902         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12903                 skip "non-ldiskfs backend" && return
12904
12905         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12906         local myDIR=$DIR/$tdir
12907
12908         mkdir -p $myDIR
12909         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12910         $LCTL set_param fail_loc=0x80001002
12911         createmany -o $myDIR/t- 10000
12912         $LCTL set_param fail_loc=0
12913         # The guard is current the largest FID holder
12914         touch $myDIR/guard
12915         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12916                     tr -d '[')
12917         local IDX=$(($SEQ % 64))
12918
12919         do_facet $SINGLEMDS sync
12920         # Make sure journal flushed.
12921         sleep 6
12922         local blk1=$(do_facet $SINGLEMDS \
12923                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12924                      grep Blockcount | awk '{print $4}')
12925
12926         # Remove old files, some OI blocks will become idle.
12927         unlinkmany $myDIR/t- 10000
12928
12929         # stop the MDT
12930         stop $SINGLEMDS || error "Fail to stop MDT."
12931         # remount the MDT
12932         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12933
12934         df $MOUNT || error "Fail to df."
12935         # Create new files, idle OI blocks should be reused.
12936         createmany -o $myDIR/t- 2000
12937         do_facet $SINGLEMDS sync
12938         # Make sure journal flushed.
12939         sleep 6
12940         local blk2=$(do_facet $SINGLEMDS \
12941                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12942                      grep Blockcount | awk '{print $4}')
12943
12944         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12945 }
12946 run_test 228b "idle OI blocks can be reused after MDT restart"
12947
12948 #LU-1881
12949 test_228c() {
12950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12951         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12952         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12953                 skip "non-ldiskfs backend" && return
12954
12955         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12956         local myDIR=$DIR/$tdir
12957
12958         mkdir -p $myDIR
12959         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12960         $LCTL set_param fail_loc=0x80001002
12961         # 20000 files can guarantee there are index nodes in the OI file
12962         createmany -o $myDIR/t- 20000
12963         $LCTL set_param fail_loc=0
12964         # The guard is current the largest FID holder
12965         touch $myDIR/guard
12966         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12967                     tr -d '[')
12968         local IDX=$(($SEQ % 64))
12969
12970         do_facet $SINGLEMDS sync
12971         # Make sure journal flushed.
12972         sleep 6
12973         local blk1=$(do_facet $SINGLEMDS \
12974                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12975                      grep Blockcount | awk '{print $4}')
12976
12977         # Remove old files, some OI blocks will become idle.
12978         unlinkmany $myDIR/t- 20000
12979         rm -f $myDIR/guard
12980         # The OI file should become empty now
12981
12982         # Create new files, idle OI blocks should be reused.
12983         createmany -o $myDIR/t- 2000
12984         do_facet $SINGLEMDS sync
12985         # Make sure journal flushed.
12986         sleep 6
12987         local blk2=$(do_facet $SINGLEMDS \
12988                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12989                      grep Blockcount | awk '{print $4}')
12990
12991         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12992 }
12993 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12994
12995 test_229() { # LU-2482, LU-3448
12996         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12997                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
12998                 return
12999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13000         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13001
13002         rm -f $DIR/$tfile
13003
13004         # Create a file with a released layout and stripe count 2.
13005         $MULTIOP $DIR/$tfile H2c ||
13006                 error "failed to create file with released layout"
13007
13008         $GETSTRIPE -v $DIR/$tfile
13009
13010         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13011         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13012
13013         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13014         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13015         stat $DIR/$tfile || error "failed to stat released file"
13016
13017         chown $RUNAS_ID $DIR/$tfile ||
13018                 error "chown $RUNAS_ID $DIR/$tfile failed"
13019
13020         chgrp $RUNAS_ID $DIR/$tfile ||
13021                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13022
13023         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13024         rm $DIR/$tfile || error "failed to remove released file"
13025 }
13026 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13027
13028 test_230a() {
13029         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13030         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13031         local MDTIDX=1
13032
13033         test_mkdir $DIR/$tdir
13034         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13035         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13036         [ $mdt_idx -ne 0 ] &&
13037                 error "create local directory on wrong MDT $mdt_idx"
13038
13039         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13040                         error "create remote directory failed"
13041         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13042         [ $mdt_idx -ne $MDTIDX ] &&
13043                 error "create remote directory on wrong MDT $mdt_idx"
13044
13045         createmany -o $DIR/$tdir/test_230/t- 10 ||
13046                 error "create files on remote directory failed"
13047         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13048         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13049         rm -r $DIR/$tdir || error "unlink remote directory failed"
13050 }
13051 run_test 230a "Create remote directory and files under the remote directory"
13052
13053 test_230b() {
13054         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13055         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13056         local MDTIDX=1
13057         local mdt_index
13058         local i
13059         local file
13060         local pid
13061         local stripe_count
13062         local migrate_dir=$DIR/$tdir/migrate_dir
13063         local other_dir=$DIR/$tdir/other_dir
13064
13065         test_mkdir $DIR/$tdir
13066         test_mkdir -i0 -c1 $migrate_dir
13067         test_mkdir -i0 -c1 $other_dir
13068         for ((i=0; i<10; i++)); do
13069                 mkdir -p $migrate_dir/dir_${i}
13070                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13071                         error "create files under remote dir failed $i"
13072         done
13073
13074         cp /etc/passwd $migrate_dir/$tfile
13075         cp /etc/passwd $other_dir/$tfile
13076         chattr +SAD $migrate_dir
13077         chattr +SAD $migrate_dir/$tfile
13078
13079         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13080         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13081         local old_dir_mode=$(stat -c%f $migrate_dir)
13082         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13083
13084         mkdir -p $migrate_dir/dir_default_stripe2
13085         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13086         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13087
13088         mkdir -p $other_dir
13089         ln $migrate_dir/$tfile $other_dir/luna
13090         ln $migrate_dir/$tfile $migrate_dir/sofia
13091         ln $other_dir/$tfile $migrate_dir/david
13092         ln -s $migrate_dir/$tfile $other_dir/zachary
13093         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13094         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13095
13096         $LFS migrate -m $MDTIDX $migrate_dir ||
13097                 error "fails on migrating remote dir to MDT1"
13098
13099         echo "migratate to MDT1, then checking.."
13100         for ((i = 0; i < 10; i++)); do
13101                 for file in $(find $migrate_dir/dir_${i}); do
13102                         mdt_index=$($LFS getstripe -M $file)
13103                         [ $mdt_index == $MDTIDX ] ||
13104                                 error "$file is not on MDT${MDTIDX}"
13105                 done
13106         done
13107
13108         # the multiple link file should still in MDT0
13109         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13110         [ $mdt_index == 0 ] ||
13111                 error "$file is not on MDT${MDTIDX}"
13112
13113         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13114         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13115                 error " expect $old_dir_flag get $new_dir_flag"
13116
13117         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13118         [ "$old_file_flag" = "$new_file_flag" ] ||
13119                 error " expect $old_file_flag get $new_file_flag"
13120
13121         local new_dir_mode=$(stat -c%f $migrate_dir)
13122         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13123                 error "expect mode $old_dir_mode get $new_dir_mode"
13124
13125         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13126         [ "$old_file_mode" = "$new_file_mode" ] ||
13127                 error "expect mode $old_file_mode get $new_file_mode"
13128
13129         diff /etc/passwd $migrate_dir/$tfile ||
13130                 error "$tfile different after migration"
13131
13132         diff /etc/passwd $other_dir/luna ||
13133                 error "luna different after migration"
13134
13135         diff /etc/passwd $migrate_dir/sofia ||
13136                 error "sofia different after migration"
13137
13138         diff /etc/passwd $migrate_dir/david ||
13139                 error "david different after migration"
13140
13141         diff /etc/passwd $other_dir/zachary ||
13142                 error "zachary different after migration"
13143
13144         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13145                 error "${tfile}_ln different after migration"
13146
13147         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13148                 error "${tfile}_ln_other different after migration"
13149
13150         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13151         [ $stripe_count = 2 ] ||
13152                 error "dir strpe_count $d != 2 after migration."
13153
13154         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13155         [ $stripe_count = 2 ] ||
13156                 error "file strpe_count $d != 2 after migration."
13157
13158         #migrate back to MDT0
13159         MDTIDX=0
13160
13161         $LFS migrate -m $MDTIDX $migrate_dir ||
13162                 error "fails on migrating remote dir to MDT0"
13163
13164         echo "migrate back to MDT0, checking.."
13165         for file in $(find $migrate_dir); do
13166                 mdt_index=$($LFS getstripe -M $file)
13167                 [ $mdt_index == $MDTIDX ] ||
13168                         error "$file is not on MDT${MDTIDX}"
13169         done
13170
13171         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13172         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13173                 error " expect $old_dir_flag get $new_dir_flag"
13174
13175         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13176         [ "$old_file_flag" = "$new_file_flag" ] ||
13177                 error " expect $old_file_flag get $new_file_flag"
13178
13179         local new_dir_mode=$(stat -c%f $migrate_dir)
13180         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13181                 error "expect mode $old_dir_mode get $new_dir_mode"
13182
13183         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13184         [ "$old_file_mode" = "$new_file_mode" ] ||
13185                 error "expect mode $old_file_mode get $new_file_mode"
13186
13187         diff /etc/passwd ${migrate_dir}/$tfile ||
13188                 error "$tfile different after migration"
13189
13190         diff /etc/passwd ${other_dir}/luna ||
13191                 error "luna different after migration"
13192
13193         diff /etc/passwd ${migrate_dir}/sofia ||
13194                 error "sofia different after migration"
13195
13196         diff /etc/passwd ${other_dir}/zachary ||
13197                 error "zachary different after migration"
13198
13199         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13200                 error "${tfile}_ln different after migration"
13201
13202         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13203                 error "${tfile}_ln_other different after migration"
13204
13205         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13206         [ $stripe_count = 2 ] ||
13207                 error "dir strpe_count $d != 2 after migration."
13208
13209         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13210         [ $stripe_count = 2 ] ||
13211                 error "file strpe_count $d != 2 after migration."
13212
13213         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13214 }
13215 run_test 230b "migrate directory"
13216
13217 test_230c() {
13218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13219         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13220         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13221         local MDTIDX=1
13222         local mdt_index
13223         local file
13224         local migrate_dir=$DIR/$tdir/migrate_dir
13225
13226         #If migrating directory fails in the middle, all entries of
13227         #the directory is still accessiable.
13228         test_mkdir $DIR/$tdir
13229         test_mkdir -i0 -c1 $migrate_dir
13230         stat $migrate_dir
13231         createmany -o $migrate_dir/f 10 ||
13232                 error "create files under ${migrate_dir} failed"
13233
13234         #failed after migrating 5 entries
13235         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13236         do_facet mds1 lctl set_param fail_loc=0x20001801
13237         do_facet mds1 lctl  set_param fail_val=5
13238         local t=$(ls $migrate_dir | wc -l)
13239         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13240                 error "migrate should fail after 5 entries"
13241
13242         mkdir $migrate_dir/dir &&
13243                 error "mkdir succeeds under migrating directory"
13244         touch $migrate_dir/file &&
13245                 error "touch file succeeds under migrating directory"
13246
13247         local u=$(ls $migrate_dir | wc -l)
13248         [ "$u" == "$t" ] || error "$u != $t during migration"
13249
13250         for file in $(find $migrate_dir); do
13251                 stat $file || error "stat $file failed"
13252         done
13253
13254         do_facet mds1 lctl set_param fail_loc=0
13255         do_facet mds1 lctl set_param fail_val=0
13256
13257         $LFS migrate -m $MDTIDX $migrate_dir ||
13258                 error "migrate open files should failed with open files"
13259
13260         echo "Finish migration, then checking.."
13261         for file in $(find $migrate_dir); do
13262                 mdt_index=$($LFS getstripe -M $file)
13263                 [ $mdt_index == $MDTIDX ] ||
13264                         error "$file is not on MDT${MDTIDX}"
13265         done
13266
13267         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13268 }
13269 run_test 230c "check directory accessiblity if migration is failed"
13270
13271 test_230d() {
13272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13273         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13274         local MDTIDX=1
13275         local mdt_index
13276         local migrate_dir=$DIR/$tdir/migrate_dir
13277         local i
13278         local j
13279
13280         test_mkdir $DIR/$tdir
13281         test_mkdir -i0 -c1 $migrate_dir
13282
13283         for ((i=0; i<100; i++)); do
13284                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13285                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13286                         error "create files under remote dir failed $i"
13287         done
13288
13289         $LFS migrate -m $MDTIDX $migrate_dir ||
13290                 error "migrate remote dir error"
13291
13292         echo "Finish migration, then checking.."
13293         for file in $(find $migrate_dir); do
13294                 mdt_index=$($LFS getstripe -M $file)
13295                 [ $mdt_index == $MDTIDX ] ||
13296                         error "$file is not on MDT${MDTIDX}"
13297         done
13298
13299         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13300 }
13301 run_test 230d "check migrate big directory"
13302
13303 test_230e() {
13304         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13305         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13306         local i
13307         local j
13308         local a_fid
13309         local b_fid
13310
13311         mkdir -p $DIR/$tdir
13312         mkdir $DIR/$tdir/migrate_dir
13313         mkdir $DIR/$tdir/other_dir
13314         touch $DIR/$tdir/migrate_dir/a
13315         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13316         ls $DIR/$tdir/other_dir
13317
13318         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13319                 error "migrate dir fails"
13320
13321         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13322         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13323
13324         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13325         [ $mdt_index == 0 ] || error "a is not on MDT0"
13326
13327         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13328                 error "migrate dir fails"
13329
13330         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13331         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13332
13333         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13334         [ $mdt_index == 1 ] || error "a is not on MDT1"
13335
13336         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13337         [ $mdt_index == 1 ] || error "b is not on MDT1"
13338
13339         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13340         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13341
13342         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13343
13344         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13345 }
13346 run_test 230e "migrate mulitple local link files"
13347
13348 test_230f() {
13349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13350         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13351         local a_fid
13352         local ln_fid
13353
13354         mkdir -p $DIR/$tdir
13355         mkdir $DIR/$tdir/migrate_dir
13356         $LFS mkdir -i1 $DIR/$tdir/other_dir
13357         touch $DIR/$tdir/migrate_dir/a
13358         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13359         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13360         ls $DIR/$tdir/other_dir
13361
13362         # a should be migrated to MDT1, since no other links on MDT0
13363         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13364                 error "#1 migrate dir fails"
13365         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13366         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13367         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13368         [ $mdt_index == 1 ] || error "a is not on MDT1"
13369
13370         # a should stay on MDT1, because it is a mulitple link file
13371         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13372                 error "#2 migrate dir fails"
13373         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13374         [ $mdt_index == 1 ] || error "a is not on MDT1"
13375
13376         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13377                 error "#3 migrate dir fails"
13378
13379         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13380         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13381         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13382
13383         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13384         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13385
13386         # a should be migrated to MDT0, since no other links on MDT1
13387         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13388                 error "#4 migrate dir fails"
13389         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13390         [ $mdt_index == 0 ] || error "a is not on MDT0"
13391
13392         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13393 }
13394 run_test 230f "migrate mulitple remote link files"
13395
13396 test_230g() {
13397         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13398         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13399
13400         mkdir -p $DIR/$tdir/migrate_dir
13401
13402         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13403                 error "migrating dir to non-exist MDT succeeds"
13404         true
13405 }
13406 run_test 230g "migrate dir to non-exist MDT"
13407
13408 test_230h() {
13409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13410         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13411         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13412                 skip "Need MDS version at least 2.7.64" && return
13413         local mdt_index
13414
13415         mkdir -p $DIR/$tdir/migrate_dir
13416
13417         $LFS migrate -m1 $DIR &&
13418                 error "migrating mountpoint1 should fail"
13419
13420         $LFS migrate -m1 $DIR/$tdir/.. &&
13421                 error "migrating mountpoint2 should fail"
13422
13423         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13424                 error "migrating $tdir fail"
13425
13426         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13427         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13428
13429         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13430         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13431
13432 }
13433 run_test 230h "migrate .. and root"
13434
13435 test_230i() {
13436         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13437         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13438
13439         mkdir -p $DIR/$tdir/migrate_dir
13440
13441         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13442                 error "migration fails with a tailing slash"
13443
13444         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13445                 error "migration fails with two tailing slashes"
13446 }
13447 run_test 230i "lfs migrate -m tolerates trailing slashes"
13448
13449 test_231a()
13450 {
13451         # For simplicity this test assumes that max_pages_per_rpc
13452         # is the same across all OSCs
13453         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13454         local bulk_size=$((max_pages * 4096))
13455
13456         mkdir -p $DIR/$tdir
13457
13458         # clear the OSC stats
13459         $LCTL set_param osc.*.stats=0 &>/dev/null
13460         stop_writeback
13461
13462         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13463         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13464                 oflag=direct &>/dev/null || error "dd failed"
13465
13466         sync; sleep 1; sync # just to be safe
13467         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13468         if [ x$nrpcs != "x1" ]; then
13469                 $LCTL get_param osc.*.stats
13470                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13471         fi
13472
13473         start_writeback
13474         # Drop the OSC cache, otherwise we will read from it
13475         cancel_lru_locks osc
13476
13477         # clear the OSC stats
13478         $LCTL set_param osc.*.stats=0 &>/dev/null
13479
13480         # Client reads $bulk_size.
13481         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13482                 iflag=direct &>/dev/null || error "dd failed"
13483
13484         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13485         if [ x$nrpcs != "x1" ]; then
13486                 $LCTL get_param osc.*.stats
13487                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13488         fi
13489 }
13490 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13491
13492 test_231b() {
13493         mkdir -p $DIR/$tdir
13494         local i
13495         for i in {0..1023}; do
13496                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13497                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13498                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13499         done
13500         sync
13501 }
13502 run_test 231b "must not assert on fully utilized OST request buffer"
13503
13504 test_232() {
13505         mkdir -p $DIR/$tdir
13506         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13507         $LCTL set_param fail_loc=0x31c
13508
13509         # ignore dd failure
13510         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13511
13512         $LCTL set_param fail_loc=0
13513         umount_client $MOUNT || error "umount failed"
13514         mount_client $MOUNT || error "mount failed"
13515 }
13516 run_test 232 "failed lock should not block umount"
13517
13518 test_233a() {
13519         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13520         { skip "Need MDS version at least 2.3.64"; return; }
13521         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13522
13523         local fid=$($LFS path2fid $MOUNT)
13524         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13525                 error "cannot access $MOUNT using its FID '$fid'"
13526 }
13527 run_test 233a "checking that OBF of the FS root succeeds"
13528
13529 test_233b() {
13530         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13531         { skip "Need MDS version at least 2.5.90"; return; }
13532         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13533
13534         local fid=$($LFS path2fid $MOUNT/.lustre)
13535         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13536                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13537
13538         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13539         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13540                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13541 }
13542 run_test 233b "checking that OBF of the FS .lustre succeeds"
13543
13544 test_234() {
13545         local p="$TMP/sanityN-$TESTNAME.parameters"
13546         save_lustre_params client "llite.*.xattr_cache" > $p
13547         lctl set_param llite.*.xattr_cache 1 ||
13548                 { skip "xattr cache is not supported"; return 0; }
13549
13550         mkdir -p $DIR/$tdir || error "mkdir failed"
13551         touch $DIR/$tdir/$tfile || error "touch failed"
13552         # OBD_FAIL_LLITE_XATTR_ENOMEM
13553         $LCTL set_param fail_loc=0x1405
13554         # output of the form: attr 2 4 44 3 fc13 x86_64
13555         V=($(IFS=".-" rpm -q attr))
13556         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13557               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13558                 # attr pre-2.4.44-7 had a bug with rc
13559                 # LU-3703 - SLES 11 and FC13 clients have older attr
13560                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13561                         error "getfattr should have failed with ENOMEM"
13562         else
13563                 skip "LU-3703: attr version $(getfattr --version) too old"
13564         fi
13565         $LCTL set_param fail_loc=0x0
13566         rm -rf $DIR/$tdir
13567
13568         restore_lustre_params < $p
13569         rm -f $p
13570 }
13571 run_test 234 "xattr cache should not crash on ENOMEM"
13572
13573 test_235() {
13574         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13575                 skip "Need MDS version at least 2.4.52" && return
13576         flock_deadlock $DIR/$tfile
13577         local RC=$?
13578         case $RC in
13579                 0)
13580                 ;;
13581                 124) error "process hangs on a deadlock"
13582                 ;;
13583                 *) error "error executing flock_deadlock $DIR/$tfile"
13584                 ;;
13585         esac
13586 }
13587 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13588
13589 #LU-2935
13590 test_236() {
13591         check_swap_layouts_support && return 0
13592         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13593
13594         local ref1=/etc/passwd
13595         local ref2=/etc/group
13596         local file1=$DIR/$tdir/f1
13597         local file2=$DIR/$tdir/f2
13598
13599         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13600         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13601         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13602         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13603         local fd=$(free_fd)
13604         local cmd="exec $fd<>$file2"
13605         eval $cmd
13606         rm $file2
13607         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13608                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13609         cmd="exec $fd>&-"
13610         eval $cmd
13611         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13612
13613         #cleanup
13614         rm -rf $DIR/$tdir
13615 }
13616 run_test 236 "Layout swap on open unlinked file"
13617
13618 # test to verify file handle related system calls
13619 # (name_to_handle_at/open_by_handle_at)
13620 # The new system calls are supported in glibc >= 2.14.
13621
13622 test_237() {
13623         echo "Test file_handle syscalls" > $DIR/$tfile ||
13624                 error "write failed"
13625         check_fhandle_syscalls $DIR/$tfile ||
13626                 error "check_fhandle_syscalls failed"
13627 }
13628 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13629
13630 # LU-4659 linkea consistency
13631 test_238() {
13632         local server_version=$(lustre_version_code $SINGLEMDS)
13633
13634         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13635                 [[ $server_version -gt $(version_code 2.5.1) &&
13636                    $server_version -lt $(version_code 2.5.50) ]] ||
13637                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13638
13639         touch $DIR/$tfile
13640         ln $DIR/$tfile $DIR/$tfile.lnk
13641         touch $DIR/$tfile.new
13642         mv $DIR/$tfile.new $DIR/$tfile
13643         local fid1=$($LFS path2fid $DIR/$tfile)
13644         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13645         local path1=$($LFS fid2path $FSNAME "$fid1")
13646         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13647         local path2=$($LFS fid2path $FSNAME "$fid2")
13648         [ $tfile.lnk == $path2 ] ||
13649                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13650         rm -f $DIR/$tfile*
13651 }
13652 run_test 238 "Verify linkea consistency"
13653
13654 test_239() {
13655         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13656                 skip "Need MDS version at least 2.5.60" && return
13657         local list=$(comma_list $(mdts_nodes))
13658
13659         mkdir -p $DIR/$tdir
13660         createmany -o $DIR/$tdir/f- 5000
13661         unlinkmany $DIR/$tdir/f- 5000
13662         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13663         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13664                         osc.*MDT*.sync_in_flight" | calc_sum)
13665         [ "$changes" -eq 0 ] || error "$changes not synced"
13666 }
13667 run_test 239 "osp_sync test"
13668
13669 test_239a() { #LU-5297
13670         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13671         touch $DIR/$tfile
13672         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13673         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13674         chgrp $RUNAS_GID $DIR/$tfile
13675         wait_delete_completed
13676 }
13677 run_test 239a "process invalid osp sync record correctly"
13678
13679 test_239b() { #LU-5297
13680         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13681         touch $DIR/$tfile1
13682         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13683         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13684         chgrp $RUNAS_GID $DIR/$tfile1
13685         wait_delete_completed
13686         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13687         touch $DIR/$tfile2
13688         chgrp $RUNAS_GID $DIR/$tfile2
13689         wait_delete_completed
13690 }
13691 run_test 239b "process osp sync record with ENOMEM error correctly"
13692
13693 test_240() {
13694         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13695         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13696
13697         mkdir -p $DIR/$tdir
13698
13699         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13700                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13701         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13702                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13703
13704         umount_client $MOUNT || error "umount failed"
13705         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13706         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13707         mount_client $MOUNT || error "failed to mount client"
13708
13709         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13710         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13711 }
13712 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13713
13714 test_241_bio() {
13715         for LOOP in $(seq $1); do
13716                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13717                 cancel_lru_locks osc || true
13718         done
13719 }
13720
13721 test_241_dio() {
13722         for LOOP in $(seq $1); do
13723                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13724                                                 iflag=direct 2>/dev/null
13725         done
13726 }
13727
13728 test_241a() { # was test_241
13729         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13730         ls -la $DIR/$tfile
13731         cancel_lru_locks osc
13732         test_241_bio 1000 &
13733         PID=$!
13734         test_241_dio 1000
13735         wait $PID
13736 }
13737 run_test 241a "bio vs dio"
13738
13739 test_241b() {
13740         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13741         ls -la $DIR/$tfile
13742         test_241_dio 1000 &
13743         PID=$!
13744         test_241_dio 1000
13745         wait $PID
13746 }
13747 run_test 241b "dio vs dio"
13748
13749 test_242() {
13750         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13751         mkdir -p $DIR/$tdir
13752         touch $DIR/$tdir/$tfile
13753
13754         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13755         do_facet mds1 lctl set_param fail_loc=0x105
13756         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13757
13758         do_facet mds1 lctl set_param fail_loc=0
13759         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13760 }
13761 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13762
13763 test_243()
13764 {
13765         test_mkdir -p $DIR/$tdir
13766         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13767 }
13768 run_test 243 "various group lock tests"
13769
13770 test_244()
13771 {
13772         test_mkdir -p $DIR/$tdir
13773         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13774         sendfile_grouplock $DIR/$tdir/$tfile || \
13775                 error "sendfile+grouplock failed"
13776         rm -rf $DIR/$tdir
13777 }
13778 run_test 244 "sendfile with group lock tests"
13779
13780 test_245() {
13781         local flagname="multi_mod_rpcs"
13782         local connect_data_name="max_mod_rpcs"
13783         local out
13784
13785         # check if multiple modify RPCs flag is set
13786         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
13787                 grep "connect_flags:")
13788         echo "$out"
13789
13790         echo "$out" | grep -qw $flagname
13791         if [ $? -ne 0 ]; then
13792                 echo "connect flag $flagname is not set"
13793                 return
13794         fi
13795
13796         # check if multiple modify RPCs data is set
13797         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
13798         echo "$out"
13799
13800         echo "$out" | grep -qw $connect_data_name ||
13801                 error "import should have connect data $connect_data_name"
13802 }
13803 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
13804
13805 test_246() { # LU-7371
13806         remote_ost_nodsh && skip "remote OST with nodsh" && return
13807         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
13808                 skip "Need OST version >= 2.7.62" && return 0
13809         do_facet ost1 $LCTL set_param fail_val=4095
13810 #define OBD_FAIL_OST_READ_SIZE          0x234
13811         do_facet ost1 $LCTL set_param fail_loc=0x234
13812         $LFS setstripe $DIR/$tfile -i 0 -c 1
13813         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
13814         cancel_lru_locks $FSNAME-OST0000
13815         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
13816 }
13817 run_test 246 "Read file of size 4095 should return right length"
13818
13819 test_247a() {
13820         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13821                 grep -q subtree ||
13822                 { skip "Fileset feature is not supported"; return; }
13823
13824         local submount=${MOUNT}_$tdir
13825
13826         mkdir $MOUNT/$tdir
13827         mkdir -p $submount || error "mkdir $submount failed"
13828         FILESET="$FILESET/$tdir" mount_client $submount ||
13829                 error "mount $submount failed"
13830         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
13831         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
13832                 error "read $MOUNT/$tdir/$tfile failed"
13833         umount_client $submount || error "umount $submount failed"
13834         rmdir $submount
13835 }
13836 run_test 247a "mount subdir as fileset"
13837
13838 test_247b() {
13839         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13840                 { skip "Fileset feature is not supported"; return; }
13841
13842         local submount=${MOUNT}_$tdir
13843
13844         rm -rf $MOUNT/$tdir
13845         mkdir -p $submount || error "mkdir $submount failed"
13846         SKIP_FILESET=1
13847         FILESET="$FILESET/$tdir" mount_client $submount &&
13848                 error "mount $submount should fail"
13849         rmdir $submount
13850 }
13851 run_test 247b "mount subdir that dose not exist"
13852
13853 test_247c() {
13854         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13855                 { skip "Fileset feature is not supported"; return; }
13856
13857         local submount=${MOUNT}_$tdir
13858
13859         mkdir -p $MOUNT/$tdir/dir1
13860         mkdir -p $submount || error "mkdir $submount failed"
13861         FILESET="$FILESET/$tdir" mount_client $submount ||
13862                 error "mount $submount failed"
13863         local fid=$($LFS path2fid $MOUNT/)
13864         $LFS fid2path $submount $fid && error "fid2path should fail"
13865         umount_client $submount || error "umount $submount failed"
13866         rmdir $submount
13867 }
13868 run_test 247c "running fid2path outside root"
13869
13870 test_247d() {
13871         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13872                 { skip "Fileset feature is not supported"; return; }
13873
13874         local submount=${MOUNT}_$tdir
13875
13876         mkdir -p $MOUNT/$tdir/dir1
13877         mkdir -p $submount || error "mkdir $submount failed"
13878         FILESET="$FILESET/$tdir" mount_client $submount ||
13879                 error "mount $submount failed"
13880         local fid=$($LFS path2fid $submount/dir1)
13881         $LFS fid2path $submount $fid || error "fid2path should succeed"
13882         umount_client $submount || error "umount $submount failed"
13883         rmdir $submount
13884 }
13885 run_test 247d "running fid2path inside root"
13886
13887 # LU-8037
13888 test_247e() {
13889         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13890                 grep -q subtree ||
13891                 { skip "Fileset feature is not supported"; return; }
13892
13893         local submount=${MOUNT}_$tdir
13894
13895         mkdir $MOUNT/$tdir
13896         mkdir -p $submount || error "mkdir $submount failed"
13897         FILESET="$FILESET/.." mount_client $submount &&
13898                 error "mount $submount should fail"
13899         rmdir $submount
13900 }
13901 run_test 247e "mount .. as fileset"
13902
13903 test_248() {
13904         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
13905         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
13906
13907         # create a large file for fast read verification
13908         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
13909
13910         # make sure the file is created correctly
13911         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
13912                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
13913
13914         echo "Test 1: verify that fast read is 4 times faster on cache read"
13915
13916         # small read with fast read enabled
13917         $LCTL set_param -n llite.*.fast_read=1
13918         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13919                 awk '/copied/ { print $6 }')
13920
13921         # small read with fast read disabled
13922         $LCTL set_param -n llite.*.fast_read=0
13923         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13924                 awk '/copied/ { print $6 }')
13925
13926         # verify that fast read is 4 times faster for cache read
13927         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
13928                 error_not_in_vm "fast read was not 4 times faster: " \
13929                            "$t_fast vs $t_slow"
13930
13931         echo "Test 2: verify the performance between big and small read"
13932         $LCTL set_param -n llite.*.fast_read=1
13933
13934         # 1k non-cache read
13935         cancel_lru_locks osc
13936         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
13937                 awk '/copied/ { print $6 }')
13938
13939         # 1M non-cache read
13940         cancel_lru_locks osc
13941         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
13942                 awk '/copied/ { print $6 }')
13943
13944         # verify that big IO is not 4 times faster than small IO
13945         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
13946                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
13947
13948         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
13949         rm -f $DIR/$tfile
13950 }
13951 run_test 248 "fast read verification"
13952
13953 test_249() { # LU-7890
13954         rm -f $DIR/$tfile
13955         $SETSTRIPE -c 1 $DIR/$tfile
13956
13957         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
13958         skip "Need at least version 2.8.54"
13959
13960         # Offset 2T == 4k * 512M
13961         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
13962                 error "dd to 2T offset failed"
13963 }
13964 run_test 249 "Write above 2T file size"
13965
13966 test_250() {
13967         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13968          && skip "no 16TB file size limit on ZFS" && return
13969
13970         $SETSTRIPE -c 1 $DIR/$tfile
13971         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13972         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13973         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13974         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13975                 conv=notrunc,fsync && error "append succeeded"
13976         return 0
13977 }
13978 run_test 250 "Write above 16T limit"
13979
13980 test_251() {
13981         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13982
13983         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13984         #Skip once - writing the first stripe will succeed
13985         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13986         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13987                 error "short write happened"
13988
13989         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13990         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
13991                 error "short read happened"
13992
13993         rm -f $DIR/$tfile
13994 }
13995 run_test 251 "Handling short read and write correctly"
13996
13997 test_252() {
13998         local tgt
13999         local dev
14000         local out
14001         local uuid
14002         local num
14003         local gen
14004
14005         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14006         remote_ost_nodsh && skip "remote OST with nodsh" && return
14007         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14008              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14009                 skip "can only run lr_reader on ldiskfs target"
14010                 return
14011         fi
14012
14013         # check lr_reader on OST0000
14014         tgt=ost1
14015         dev=$(facet_device $tgt)
14016         out=$(do_facet $tgt $LR_READER $dev)
14017         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14018         echo "$out"
14019         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14020         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14021                 error "Invalid uuid returned by $LR_READER on target $tgt"
14022         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14023
14024         # check lr_reader -c on MDT0000
14025         tgt=mds1
14026         dev=$(facet_device $tgt)
14027         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14028                 echo "$LR_READER does not support additional options"
14029                 return 0
14030         fi
14031         out=$(do_facet $tgt $LR_READER -c $dev)
14032         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14033         echo "$out"
14034         num=$(echo "$out" | grep -c "mdtlov")
14035         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14036                 error "Invalid number of mdtlov clients returned by $LR_READER"
14037         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14038
14039         # check lr_reader -cr on MDT0000
14040         out=$(do_facet $tgt $LR_READER -cr $dev)
14041         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14042         echo "$out"
14043         echo "$out" | grep -q "^reply_data:$" ||
14044                 error "$LR_READER should have returned 'reply_data' section"
14045         num=$(echo "$out" | grep -c "client_generation")
14046         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14047 }
14048 run_test 252 "check lr_reader tool"
14049
14050 test_253_fill_ost() {
14051         local size_mb #how many MB should we write to pass watermark
14052         local lwm=$3  #low watermark
14053         local free_10mb #10% of free space
14054
14055         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14056         size_mb=$((free_kb / 1024 - lwm))
14057         free_10mb=$((free_kb / 10240))
14058         #If 10% of free space cross low watermark use it
14059         if (( free_10mb > size_mb )); then
14060                 size_mb=$free_10mb
14061         else
14062                 #At least we need to store 1.1 of difference between
14063                 #free space and low watermark
14064                 size_mb=$((size_mb + size_mb / 10))
14065         fi
14066         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14067                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14068                          oflag=append conv=notrunc
14069         fi
14070
14071         sleep_maxage
14072
14073         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14074         echo "OST still has $((free_kb / 1024)) mbytes free"
14075 }
14076
14077 test_253() {
14078         local ostidx=0
14079         local rc=0
14080
14081         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14082         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14083         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14084
14085         local ost_name=$($LFS osts | grep ${ostidx}": " | \
14086                 awk '{print $2}' | sed -e 's/_UUID$//')
14087         # on the mdt's osc
14088         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14089         do_facet $SINGLEMDS $LCTL get_param -n \
14090                 osp.$mdtosc_proc1.reserved_mb_high ||
14091                 { skip  "remote MDS does not support reserved_mb_high" &&
14092                   return; }
14093
14094         rm -rf $DIR/$tdir
14095         wait_mds_ost_sync
14096         wait_delete_completed
14097         mkdir $DIR/$tdir
14098
14099         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14100                         osp.$mdtosc_proc1.reserved_mb_high)
14101         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14102                         osp.$mdtosc_proc1.reserved_mb_low)
14103         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14104
14105         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME ||
14106                 error "Pool creation failed"
14107         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14108                 error "Adding $ost_name to pool failed"
14109
14110         # Wait for client to see a OST at pool
14111         wait_update $HOSTNAME "$LCTL get_param -n
14112                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14113                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14114                 error "Client can not see the pool"
14115         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14116                 error "Setstripe failed"
14117
14118         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14119         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14120         echo "OST still has $((blocks/1024)) mbytes free"
14121
14122         local new_lwm=$((blocks/1024-10))
14123         do_facet $SINGLEMDS $LCTL set_param \
14124                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14125         do_facet $SINGLEMDS $LCTL set_param \
14126                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14127
14128         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14129
14130         #First enospc could execute orphan deletion so repeat.
14131         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14132
14133         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14134                         osp.$mdtosc_proc1.prealloc_status)
14135         echo "prealloc_status $oa_status"
14136
14137         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14138                 error "File creation should fail"
14139         #object allocation was stopped, but we still able to append files
14140         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14141                 error "Append failed"
14142         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14143
14144         wait_delete_completed
14145
14146         sleep_maxage
14147
14148         for i in $(seq 10 12); do
14149                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14150                         error "File creation failed after rm";
14151         done
14152
14153         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14154                         osp.$mdtosc_proc1.prealloc_status)
14155         echo "prealloc_status $oa_status"
14156
14157         if (( oa_status != 0 )); then
14158                 error "Object allocation still disable after rm"
14159         fi
14160         do_facet $SINGLEMDS $LCTL set_param \
14161                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14162         do_facet $SINGLEMDS $LCTL set_param \
14163                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14164
14165
14166         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14167                 error "Remove $ost_name from pool failed"
14168         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14169                 error "Pool destroy fialed"
14170 }
14171 run_test 253 "Check object allocation limit"
14172
14173 test_254() {
14174         local cl_user
14175
14176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14177         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14178         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14179                 { skip "MDS does not support changelog_size" && return; }
14180
14181         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14182         echo "Registered as changelog user $cl_user"
14183
14184         $LFS changelog_clear $MDT0 $cl_user 0
14185
14186         local size1=$(do_facet mds1 \
14187                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14188         echo "Changelog size $size1"
14189
14190         rm -rf $DIR/$tdir
14191         $LFS mkdir -i 0 $DIR/$tdir
14192         # change something
14193         mkdir -p $DIR/$tdir/pics/2008/zachy
14194         touch $DIR/$tdir/pics/2008/zachy/timestamp
14195         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14196         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14197         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14198         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14199         rm $DIR/$tdir/pics/desktop.jpg
14200
14201         local size2=$(do_facet mds1 \
14202                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14203         echo "Changelog size after work $size2"
14204
14205         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14206
14207         if (( size2 <= size1 )); then
14208                 error "Changelog size after work should be greater than original"
14209         fi
14210         return 0
14211 }
14212 run_test 254 "Check changelog size"
14213
14214 ladvise_no_type()
14215 {
14216         local type=$1
14217         local file=$2
14218
14219         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14220                 awk -F: '{print $2}' | grep $type > /dev/null
14221         if [ $? -ne 0 ]; then
14222                 return 0
14223         fi
14224         return 1
14225 }
14226
14227 ladvise_no_ioctl()
14228 {
14229         local file=$1
14230
14231         lfs ladvise -a willread $file > /dev/null 2>&1
14232         if [ $? -eq 0 ]; then
14233                 return 1
14234         fi
14235
14236         lfs ladvise -a willread $file 2>&1 |
14237                 grep "Inappropriate ioctl for device" > /dev/null
14238         if [ $? -eq 0 ]; then
14239                 return 0
14240         fi
14241         return 1
14242 }
14243
14244 ladvise_willread_performance()
14245 {
14246         local repeat=10
14247         local average_cache=0
14248         local average_ladvise=0
14249
14250         for ((i = 1; i <= $repeat; i++)); do
14251                 echo "Iter $i/$repeat: reading without willread hint"
14252                 cancel_lru_locks osc
14253                 do_nodes $(comma_list $(osts_nodes)) \
14254                         "echo 3 > /proc/sys/vm/drop_caches"
14255                 local speed_origin=$($READS -f $DIR/$tfile -s $size \
14256                         -b 4096 -n $((size / 4096)) -t 60 |
14257                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14258
14259                 echo "Iter $i/$repeat: Reading again without willread hint"
14260                 cancel_lru_locks osc
14261                 local speed_cache=$($READS -f $DIR/$tfile -s $size \
14262                         -b 4096 -n $((size / 4096)) -t 60 |
14263                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14264
14265                 echo "Iter $i/$repeat: reading with willread hint"
14266                 cancel_lru_locks osc
14267                 do_nodes $(comma_list $(osts_nodes)) \
14268                         "echo 3 > /proc/sys/vm/drop_caches"
14269                 lfs ladvise -a willread $DIR/$tfile ||
14270                         error "Ladvise failed"
14271                 local speed_ladvise=$($READS -f $DIR/$tfile -s $size \
14272                         -b 4096 -n $((size / 4096)) -t 60 |
14273                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14274
14275                 local cache_speedup=$(echo "scale=2; \
14276                         ($speed_cache-$speed_origin)/$speed_origin*100" | bc)
14277                 cache_speedup=$(echo ${cache_speedup%.*})
14278                 echo "Iter $i/$repeat: cache speedup: $cache_speedup%"
14279                 average_cache=$((average_cache + cache_speedup))
14280
14281                 local ladvise_speedup=$(echo "scale=2; \
14282                         ($speed_ladvise-$speed_origin)/$speed_origin*100" | bc)
14283                 ladvise_speedup=$(echo ${ladvise_speedup%.*})
14284                 echo "Iter $i/$repeat: ladvise speedup: $ladvise_speedup%"
14285                 average_ladvise=$((average_ladvise + ladvise_speedup))
14286         done
14287         average_cache=$((average_cache / repeat))
14288         average_ladvise=$((average_ladvise / repeat))
14289
14290         if [ $average_cache -lt 20 ]; then
14291                 echo "Speedup with cache is less than 20% ($average_cache%),"\
14292                         "skipping check of speedup with willread:"\
14293                         "$average_ladvise%"
14294                 return 0
14295         fi
14296
14297         local lowest_speedup=$((average_cache / 2))
14298         [ $average_ladvise -gt $lowest_speedup ] ||
14299                 error_not_in_vm "Speedup with willread is less than " \
14300                            "$lowest_speedup%, got $average_ladvise%"
14301         echo "Speedup with willread ladvise: $average_ladvise%"
14302         echo "Speedup with cache: $average_cache%"
14303 }
14304
14305 test_255a() {
14306         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14307
14308         ladvise_no_type willread $DIR/$tfile &&
14309                 skip "willread ladvise is not supported" && return
14310
14311         ladvise_no_ioctl $DIR/$tfile &&
14312                 skip "ladvise ioctl is not supported" && return
14313
14314         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14315                 skip "lustre < 2.8.54 does not support ladvise " && return
14316
14317         local size_mb=100
14318         local size=$((size_mb * 1048576))
14319         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14320                 error "dd to $DIR/$tfile failed"
14321
14322         lfs ladvise -a willread $DIR/$tfile ||
14323                 error "Ladvise failed with no range argument"
14324
14325         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14326                 error "Ladvise failed with no -l or -e argument"
14327
14328         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14329                 error "Ladvise failed with only -e argument"
14330
14331         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14332                 error "Ladvise failed with only -l argument"
14333
14334         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14335                 error "End offset should not be smaller than start offset"
14336
14337         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14338                 error "End offset should not be equal to start offset"
14339
14340         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14341                 error "Ladvise failed with overflowing -s argument"
14342
14343         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14344                 error "Ladvise failed with overflowing -e argument"
14345
14346         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14347                 error "Ladvise failed with overflowing -l argument"
14348
14349         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14350                 error "Ladvise succeeded with conflicting -l and -e arguments"
14351
14352         echo "Synchronous ladvise should wait"
14353         local delay=4
14354 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14355         do_nodes $(comma_list $(osts_nodes)) \
14356                 $LCTL set_param fail_val=$delay fail_loc=0x237
14357
14358         local start_ts=$SECONDS
14359         lfs ladvise -a willread $DIR/$tfile ||
14360                 error "Ladvise failed with no range argument"
14361         local end_ts=$SECONDS
14362         local inteval_ts=$((end_ts - start_ts))
14363
14364         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14365                 error "Synchronous advice didn't wait reply"
14366         fi
14367
14368         echo "Asynchronous ladvise shouldn't wait"
14369         local start_ts=$SECONDS
14370         lfs ladvise -a willread -b $DIR/$tfile ||
14371                 error "Ladvise failed with no range argument"
14372         local end_ts=$SECONDS
14373         local inteval_ts=$((end_ts - start_ts))
14374
14375         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14376                 error "Asynchronous advice blocked"
14377         fi
14378
14379         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14380         ladvise_willread_performance
14381 }
14382 run_test 255a "check 'lfs ladvise -a willread'"
14383
14384 facet_meminfo() {
14385         local facet=$1
14386         local info=$2
14387
14388         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14389 }
14390
14391 test_255b() {
14392         ladvise_no_type dontneed $DIR/$tfile &&
14393                 skip "dontneed ladvise is not supported" && return
14394
14395         ladvise_no_ioctl $DIR/$tfile &&
14396                 skip "ladvise ioctl is not supported" && return
14397
14398         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14399                 skip "lustre < 2.8.54 does not support ladvise" && return
14400
14401         [ "$(facet_fstype ost1)" = "zfs" ] &&
14402                 skip "zfs-osd does not support dontneed advice" && return
14403
14404         lfs setstripe -c 1 -i 0 $DIR/$tfile
14405
14406         local size_mb=100
14407         local size=$((size_mb * 1048576))
14408         # In order to prevent disturbance of other processes, only check 3/4
14409         # of the memory usage
14410         local kibibytes=$((size_mb * 1024 * 3 / 4))
14411
14412         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14413                 error "dd to $DIR/$tfile failed"
14414
14415         local total=$(facet_meminfo ost1 MemTotal)
14416         echo "Total memory: $total KiB"
14417
14418         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14419         local before_read=$(facet_meminfo ost1 Cached)
14420         echo "Cache used before read: $before_read KiB"
14421
14422         lfs ladvise -a willread $DIR/$tfile ||
14423                 error "Ladvise willread failed"
14424         local after_read=$(facet_meminfo ost1 Cached)
14425         echo "Cache used after read: $after_read KiB"
14426
14427         lfs ladvise -a dontneed $DIR/$tfile ||
14428                 error "Ladvise dontneed again failed"
14429         local no_read=$(facet_meminfo ost1 Cached)
14430         echo "Cache used after dontneed ladvise: $no_read KiB"
14431
14432         if [ $total -lt $((before_read + kibibytes)) ]; then
14433                 echo "Memory is too small, abort checking"
14434                 return 0
14435         fi
14436
14437         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14438                 error "Ladvise willread should use more memory" \
14439                         "than $kibibytes KiB"
14440         fi
14441
14442         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14443                 error "Ladvise dontneed should release more memory" \
14444                         "than $kibibytes KiB"
14445         fi
14446 }
14447 run_test 255b "check 'lfs ladvise -a dontneed'"
14448
14449 test_256() {
14450         local cl_user
14451         local cat_sl
14452         local mdt_dev
14453
14454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14455         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14456         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14457                 skip "non-ldiskfs backend" && return
14458
14459         mdt_dev=$(mdsdevname 1)
14460         echo $mdt_dev
14461         cl_user=$(do_facet mds1 \
14462         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14463         if [[ -n $cl_user ]]; then
14464                 skip "active changelog user"
14465                 return
14466         fi
14467
14468         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14469         echo "Registered as changelog user $cl_user"
14470
14471         rm -rf $DIR/$tdir
14472         mkdir -p $DIR/$tdir
14473
14474         $LFS changelog_clear $MDT0 $cl_user 0
14475
14476         # change something
14477         touch $DIR/$tdir/{1..10}
14478
14479         # stop the MDT
14480         stop mds1 || error "Fail to stop MDT."
14481
14482         # remount the MDT
14483         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14484
14485         #after mount new plainllog is used
14486         touch $DIR/$tdir/{11..19}
14487         cat_sl=$(do_facet mds1 \
14488         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14489          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14490
14491         if (( cat_sl != 2 )); then
14492                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14493                 error "Changelog catalog has wrong number of slots $cat_sl"
14494         fi
14495
14496         $LFS changelog_clear $MDT0 $cl_user 0
14497
14498         cat_sl=$(do_facet mds1 \
14499         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14500          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14501
14502         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14503
14504         if (( cat_sl == 2 )); then
14505                 error "Empty plain llog was not deleted from changelog catalog"
14506         fi
14507         if (( cat_sl != 1 )); then
14508                 error "Active plain llog shouldn\`t be deleted from catalog"
14509         fi
14510 }
14511 run_test 256 "Check llog delete for empty and not full state"
14512
14513 test_257() {
14514         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14515         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14516                 skip "Need MDS version at least 2.8.55" && return
14517
14518         test_mkdir -p $DIR/$tdir
14519
14520         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14521                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14522         stat $DIR/$tdir
14523
14524 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14525         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14526         local facet=mds$((mdtidx + 1))
14527         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14528         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14529
14530         stop $facet || error "stop MDS failed"
14531         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14532                 error "start MDS fail"
14533 }
14534 run_test 257 "xattr locks are not lost"
14535
14536 test_260() {
14537 #define OBD_FAIL_MDC_CLOSE               0x806
14538         $LCTL set_param fail_loc=0x80000806
14539         touch $DIR/$tfile
14540
14541 }
14542 run_test 260 "Check mdc_close fail"
14543
14544 cleanup_test_300() {
14545         trap 0
14546         umask $SAVE_UMASK
14547 }
14548 test_striped_dir() {
14549         local mdt_index=$1
14550         local stripe_count
14551         local stripe_index
14552
14553         mkdir -p $DIR/$tdir
14554
14555         SAVE_UMASK=$(umask)
14556         trap cleanup_test_300 RETURN EXIT
14557
14558         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
14559                                                 $DIR/$tdir/striped_dir ||
14560                 error "set striped dir error"
14561
14562         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
14563         [ "$mode" = "755" ] || error "expect 755 got $mode"
14564
14565         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
14566                 error "getdirstripe failed"
14567         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
14568         if [ "$stripe_count" != "2" ]; then
14569                 error "stripe_count is $stripe_count, expect 2"
14570         fi
14571
14572         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
14573         if [ "$stripe_index" != "$mdt_index" ]; then
14574                 error "stripe_index is $stripe_index, expect $mdt_index"
14575         fi
14576
14577         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14578                 error "nlink error after create striped dir"
14579
14580         mkdir $DIR/$tdir/striped_dir/a
14581         mkdir $DIR/$tdir/striped_dir/b
14582
14583         stat $DIR/$tdir/striped_dir/a ||
14584                 error "create dir under striped dir failed"
14585         stat $DIR/$tdir/striped_dir/b ||
14586                 error "create dir under striped dir failed"
14587
14588         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
14589                 error "nlink error after mkdir"
14590
14591         rmdir $DIR/$tdir/striped_dir/a
14592         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
14593                 error "nlink error after rmdir"
14594
14595         rmdir $DIR/$tdir/striped_dir/b
14596         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14597                 error "nlink error after rmdir"
14598
14599         chattr +i $DIR/$tdir/striped_dir
14600         createmany -o $DIR/$tdir/striped_dir/f 10 &&
14601                 error "immutable flags not working under striped dir!"
14602         chattr -i $DIR/$tdir/striped_dir
14603
14604         rmdir $DIR/$tdir/striped_dir ||
14605                 error "rmdir striped dir error"
14606
14607         cleanup_test_300
14608
14609         true
14610 }
14611
14612 test_300a() {
14613         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14614                 skip "skipped for lustre < 2.7.0" && return
14615         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14616         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14617
14618         test_striped_dir 0 || error "failed on striped dir on MDT0"
14619         test_striped_dir 1 || error "failed on striped dir on MDT0"
14620 }
14621 run_test 300a "basic striped dir sanity test"
14622
14623 test_300b() {
14624         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14625                 skip "skipped for lustre < 2.7.0" && return
14626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14627         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14628         local i
14629         local mtime1
14630         local mtime2
14631         local mtime3
14632
14633         test_mkdir $DIR/$tdir || error "mkdir fail"
14634         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14635                 error "set striped dir error"
14636         for ((i=0; i<10; i++)); do
14637                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
14638                 sleep 1
14639                 touch $DIR/$tdir/striped_dir/file_$i ||
14640                                         error "touch error $i"
14641                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
14642                 [ $mtime1 -eq $mtime2 ] &&
14643                         error "mtime not change after create"
14644                 sleep 1
14645                 rm -f $DIR/$tdir/striped_dir/file_$i ||
14646                                         error "unlink error $i"
14647                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
14648                 [ $mtime2 -eq $mtime3 ] &&
14649                         error "mtime did not change after unlink"
14650         done
14651         true
14652 }
14653 run_test 300b "check ctime/mtime for striped dir"
14654
14655 test_300c() {
14656         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14657                 skip "skipped for lustre < 2.7.0" && return
14658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14659         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14660         local file_count
14661
14662         mkdir -p $DIR/$tdir
14663         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
14664                 error "set striped dir error"
14665
14666         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
14667                 error "chown striped dir failed"
14668
14669         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
14670                 error "create 5k files failed"
14671
14672         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
14673
14674         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
14675
14676         rm -rf $DIR/$tdir
14677 }
14678 run_test 300c "chown && check ls under striped directory"
14679
14680 test_300d() {
14681         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14682                 skip "skipped for lustre < 2.7.0" && return
14683         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14684         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14685         local stripe_count
14686         local file
14687
14688         mkdir -p $DIR/$tdir
14689         $SETSTRIPE -c 2 $DIR/$tdir
14690
14691         #local striped directory
14692         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14693                 error "set striped dir error"
14694         createmany -o $DIR/$tdir/striped_dir/f 10 ||
14695                 error "create 10 files failed"
14696
14697         #remote striped directory
14698         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
14699                 error "set striped dir error"
14700         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
14701                 error "create 10 files failed"
14702
14703         for file in $(find $DIR/$tdir); do
14704                 stripe_count=$($GETSTRIPE -c $file)
14705                 [ $stripe_count -eq 2 ] ||
14706                         error "wrong stripe $stripe_count for $file"
14707         done
14708
14709         rm -rf $DIR/$tdir
14710 }
14711 run_test 300d "check default stripe under striped directory"
14712
14713 test_300e() {
14714         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14715                 skip "Need MDS version at least 2.7.55" && return
14716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14717         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14718         local stripe_count
14719         local file
14720
14721         mkdir -p $DIR/$tdir
14722
14723         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14724                 error "set striped dir error"
14725
14726         touch $DIR/$tdir/striped_dir/a
14727         touch $DIR/$tdir/striped_dir/b
14728         touch $DIR/$tdir/striped_dir/c
14729
14730         mkdir $DIR/$tdir/striped_dir/dir_a
14731         mkdir $DIR/$tdir/striped_dir/dir_b
14732         mkdir $DIR/$tdir/striped_dir/dir_c
14733
14734         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
14735                 error "set striped dir under striped dir error"
14736
14737         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
14738                 error "set striped dir under striped dir error"
14739
14740         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
14741                 error "set striped dir under striped dir error"
14742
14743         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
14744                 error "rename dir under striped dir fails"
14745
14746         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
14747                 error "rename dir under different stripes fails"
14748
14749         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
14750                 error "rename file under striped dir should succeed"
14751
14752         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
14753                 error "rename dir under striped dir should succeed"
14754
14755         rm -rf $DIR/$tdir
14756 }
14757 run_test 300e "check rename under striped directory"
14758
14759 test_300f() {
14760         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14761                 skip "Need MDS version at least 2.7.55" && return
14762         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14763         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14764         local stripe_count
14765         local file
14766
14767         rm -rf $DIR/$tdir
14768         mkdir -p $DIR/$tdir
14769
14770         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14771                 error "set striped dir error"
14772
14773         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
14774                 error "set striped dir error"
14775
14776         touch $DIR/$tdir/striped_dir/a
14777         mkdir $DIR/$tdir/striped_dir/dir_a
14778         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
14779                 error "create striped dir under striped dir fails"
14780
14781         touch $DIR/$tdir/striped_dir1/b
14782         mkdir $DIR/$tdir/striped_dir1/dir_b
14783         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
14784                 error "create striped dir under striped dir fails"
14785
14786         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
14787                 error "rename dir under different striped dir should fail"
14788
14789         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
14790                 error "rename striped dir under diff striped dir should fail"
14791
14792         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
14793                 error "rename file under diff striped dirs fails"
14794
14795         rm -rf $DIR/$tdir
14796 }
14797 run_test 300f "check rename cross striped directory"
14798
14799 test_300_check_default_striped_dir()
14800 {
14801         local dirname=$1
14802         local default_count=$2
14803         local default_index=$3
14804         local stripe_count
14805         local stripe_index
14806         local dir_stripe_index
14807         local dir
14808
14809         echo "checking $dirname $default_count $default_index"
14810         $LFS setdirstripe -D -c $default_count -i $default_index \
14811                                 -t all_char $DIR/$tdir/$dirname ||
14812                 error "set default stripe on striped dir error"
14813         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
14814         [ $stripe_count -eq $default_count ] ||
14815                 error "expect $default_count get $stripe_count for $dirname"
14816
14817         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
14818         [ $stripe_index -eq $default_index ] ||
14819                 error "expect $default_index get $stripe_index for $dirname"
14820
14821         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
14822                                                 error "create dirs failed"
14823
14824         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
14825         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
14826         for dir in $(find $DIR/$tdir/$dirname/*); do
14827                 stripe_count=$($LFS getdirstripe -c $dir)
14828                 [ $stripe_count -eq $default_count ] ||
14829                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
14830                 error "stripe count $default_count != $stripe_count for $dir"
14831
14832                 stripe_index=$($LFS getdirstripe -i $dir)
14833                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
14834                         error "$stripe_index != $default_index for $dir"
14835
14836                 #check default stripe
14837                 stripe_count=$($LFS getdirstripe -D -c $dir)
14838                 [ $stripe_count -eq $default_count ] ||
14839                 error "default count $default_count != $stripe_count for $dir"
14840
14841                 stripe_index=$($LFS getdirstripe -D -i $dir)
14842                 [ $stripe_index -eq $default_index ] ||
14843                 error "default index $default_index != $stripe_index for $dir"
14844         done
14845         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
14846 }
14847
14848 test_300g() {
14849         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14850                 skip "Need MDS version at least 2.7.55" && return
14851         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14852         local dir
14853         local stripe_count
14854         local stripe_index
14855
14856         mkdir $DIR/$tdir
14857         mkdir $DIR/$tdir/normal_dir
14858
14859         #Checking when client cache stripe index
14860         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
14861         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
14862                 error "create striped_dir failed"
14863
14864         mkdir $DIR/$tdir/striped_dir/dir1 ||
14865                 error "create dir1 fails"
14866         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
14867         [ $stripe_index -eq 1 ] ||
14868                 error "dir1 expect 1 got $stripe_index"
14869
14870         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
14871                 error "create dir2 fails"
14872         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
14873         [ $stripe_index -eq 2 ] ||
14874                 error "dir2 expect 2 got $stripe_index"
14875
14876         #check default stripe count/stripe index
14877         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
14878         test_300_check_default_striped_dir normal_dir 1 0
14879         test_300_check_default_striped_dir normal_dir 2 1
14880         test_300_check_default_striped_dir normal_dir 2 -1
14881
14882         #delete default stripe information
14883         echo "delete default stripeEA"
14884         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
14885                 error "set default stripe on striped dir error"
14886
14887         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
14888         for dir in $(find $DIR/$tdir/normal_dir/*); do
14889                 stripe_count=$($LFS getdirstripe -c $dir)
14890                 [ $stripe_count -eq 0 ] ||
14891                         error "expect 1 get $stripe_count for $dir"
14892                 stripe_index=$($LFS getdirstripe -i $dir)
14893                 [ $stripe_index -eq 0 ] ||
14894                         error "expect 0 get $stripe_index for $dir"
14895         done
14896 }
14897 run_test 300g "check default striped directory for normal directory"
14898
14899 test_300h() {
14900         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14901                 skip "Need MDS version at least 2.7.55" && return
14902         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14903         local dir
14904         local stripe_count
14905
14906         mkdir $DIR/$tdir
14907         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
14908                                         $DIR/$tdir/striped_dir ||
14909                 error "set striped dir error"
14910
14911         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
14912         test_300_check_default_striped_dir striped_dir 1 0
14913         test_300_check_default_striped_dir striped_dir 2 1
14914         test_300_check_default_striped_dir striped_dir 2 -1
14915
14916         #delete default stripe information
14917         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
14918                 error "set default stripe on striped dir error"
14919
14920         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
14921         for dir in $(find $DIR/$tdir/striped_dir/*); do
14922                 stripe_count=$($LFS getdirstripe -c $dir)
14923                 [ $stripe_count -eq 0 ] ||
14924                         error "expect 1 get $stripe_count for $dir"
14925         done
14926 }
14927 run_test 300h "check default striped directory for striped directory"
14928
14929 test_300i() {
14930         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14931                 skip "Need MDS version at least 2.7.55" && return
14932         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14933         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14934         local stripe_count
14935         local file
14936
14937         mkdir $DIR/$tdir
14938
14939         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14940                 error "set striped dir error"
14941
14942         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14943                 error "create files under striped dir failed"
14944
14945         # unfortunately, we need to umount to clear dir layout cache for now
14946         # once we fully implement dir layout, we can drop this
14947         umount_client $MOUNT || error "umount failed"
14948         mount_client $MOUNT || error "mount failed"
14949
14950         #set the stripe to be unknown hash type
14951         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
14952         $LCTL set_param fail_loc=0x1901
14953         for ((i = 0; i < 10; i++)); do
14954                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
14955                         error "stat f-$i failed"
14956                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
14957         done
14958
14959         touch $DIR/$tdir/striped_dir/f0 &&
14960                 error "create under striped dir with unknown hash should fail"
14961
14962         $LCTL set_param fail_loc=0
14963
14964         umount_client $MOUNT || error "umount failed"
14965         mount_client $MOUNT || error "mount failed"
14966
14967         return 0
14968 }
14969 run_test 300i "client handle unknown hash type striped directory"
14970
14971 test_300j() {
14972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14973         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14974                 skip "Need MDS version at least 2.7.55" && return
14975         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14976         local stripe_count
14977         local file
14978
14979         mkdir $DIR/$tdir
14980
14981         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
14982         $LCTL set_param fail_loc=0x1702
14983         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14984                 error "set striped dir error"
14985
14986         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14987                 error "create files under striped dir failed"
14988
14989         $LCTL set_param fail_loc=0
14990
14991         rm -rf $DIR/$tdir || error "unlink striped dir fails"
14992
14993         return 0
14994 }
14995 run_test 300j "test large update record"
14996
14997 test_300k() {
14998         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14999                 skip "Need MDS version at least 2.7.55" && return
15000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15001         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15002         local stripe_count
15003         local file
15004
15005         mkdir $DIR/$tdir
15006
15007         #define OBD_FAIL_LARGE_STRIPE   0x1703
15008         $LCTL set_param fail_loc=0x1703
15009         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15010                 error "set striped dir error"
15011         $LCTL set_param fail_loc=0
15012
15013         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15014                 error "getstripeddir fails"
15015         rm -rf $DIR/$tdir/striped_dir ||
15016                 error "unlink striped dir fails"
15017
15018         return 0
15019 }
15020 run_test 300k "test large striped directory"
15021
15022 test_300l() {
15023         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15024                 skip "Need MDS version at least 2.7.55" && return
15025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15026         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15027         local stripe_index
15028
15029         test_mkdir -p $DIR/$tdir/striped_dir
15030         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15031                         error "chown $RUNAS_ID failed"
15032         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15033                 error "set default striped dir failed"
15034
15035         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15036         $LCTL set_param fail_loc=0x80000158
15037         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15038
15039         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15040         [ $stripe_index -eq 1 ] ||
15041                 error "expect 1 get $stripe_index for $dir"
15042 }
15043 run_test 300l "non-root user to create dir under striped dir with stale layout"
15044
15045 test_300m() {
15046         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15047                 skip "Need MDS version at least 2.7.55" && return
15048         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15049         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15050
15051         mkdir -p $DIR/$tdir/striped_dir
15052         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15053                 error "set default stripes dir error"
15054
15055         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15056
15057         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15058         [ $stripe_count -eq 0 ] ||
15059                         error "expect 0 get $stripe_count for a"
15060
15061         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15062                 error "set default stripes dir error"
15063
15064         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15065
15066         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15067         [ $stripe_count -eq 0 ] ||
15068                         error "expect 0 get $stripe_count for b"
15069
15070         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15071                 error "set default stripes dir error"
15072
15073         mkdir $DIR/$tdir/striped_dir/c &&
15074                 error "default stripe_index is invalid, mkdir c should fails"
15075
15076         rm -rf $DIR/$tdir || error "rmdir fails"
15077 }
15078 run_test 300m "setstriped directory on single MDT FS"
15079
15080 cleanup_300n() {
15081         local list=$(comma_list $(mdts_nodes))
15082
15083         trap 0
15084         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15085 }
15086
15087 test_300n() {
15088         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15089                 skip "Need MDS version at least 2.7.55" && return
15090         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15091         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15092         local stripe_index
15093         local list=$(comma_list $(mdts_nodes))
15094
15095         trap cleanup_300n RETURN EXIT
15096         mkdir -p $DIR/$tdir
15097         chmod 777 $DIR/$tdir
15098         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15099                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15100                 error "create striped dir succeeds with gid=0"
15101
15102         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15103         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15104                 error "create striped dir fails with gid=-1"
15105
15106         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15107         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15108                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15109                 error "set default striped dir succeeds with gid=0"
15110
15111
15112         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15113         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15114                 error "set default striped dir fails with gid=-1"
15115
15116
15117         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15118         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15119                                         error "create test_dir fails"
15120         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15121                                         error "create test_dir1 fails"
15122         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15123                                         error "create test_dir2 fails"
15124         cleanup_300n
15125 }
15126 run_test 300n "non-root user to create dir under striped dir with default EA"
15127
15128 test_300o() {
15129         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15130                 skip "Need MDS version at least 2.7.55" && return
15131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15132         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15133         local numfree1
15134         local numfree2
15135
15136         mkdir -p $DIR/$tdir
15137
15138         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15139         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15140         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15141                 skip "not enough free inodes $numfree1 $numfree2"
15142                 return
15143         fi
15144
15145         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15146         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15147         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15148                 skip "not enough free space $numfree1 $numfree2"
15149                 return
15150         fi
15151
15152         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15153                 error "setdirstripe fails"
15154
15155         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15156                 error "create dirs fails"
15157
15158         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15159         ls $DIR/$tdir/striped_dir > /dev/null ||
15160                 error "ls striped dir fails"
15161         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15162                 error "unlink big striped dir fails"
15163 }
15164 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15165
15166 test_300p() {
15167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15168         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15169         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15170
15171         mkdir -p $DIR/$tdir
15172
15173         #define OBD_FAIL_OUT_ENOSPC     0x1704
15174         do_facet mds2 lctl set_param fail_loc=0x80001704
15175         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15176                         error "create striped directory should fail"
15177
15178         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15179
15180         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15181         true
15182 }
15183 run_test 300p "create striped directory without space"
15184
15185 test_300q() {
15186         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15187         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15188
15189         local fd=$(free_fd)
15190         local cmd="exec $fd<$tdir"
15191         cd $DIR
15192         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15193         eval $cmd
15194         cmd="exec $fd<&-"
15195         trap "eval $cmd" EXIT
15196         cd $tdir || error "cd $tdir fails"
15197         rmdir  ../$tdir || error "rmdir $tdir fails"
15198         mkdir local_dir && error "create dir succeeds"
15199         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15200         eval $cmd
15201         return 0
15202 }
15203 run_test 300q "create remote directory under orphan directory"
15204
15205 prepare_remote_file() {
15206         mkdir $DIR/$tdir/src_dir ||
15207                 error "create remote source failed"
15208
15209         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15210         touch $DIR/$tdir/src_dir/a
15211
15212         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15213                 error "create remote target dir failed"
15214
15215         touch $DIR/$tdir/tgt_dir/b
15216
15217         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15218                 error "rename dir cross MDT failed!"
15219
15220         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15221                 error "src_child still exists after rename"
15222
15223         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15224                 error "missing file(a) after rename"
15225
15226         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15227                 error "diff after rename"
15228 }
15229
15230 test_310a() {
15231         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15233         local remote_file=$DIR/$tdir/tgt_dir/b
15234
15235         mkdir -p $DIR/$tdir
15236
15237         prepare_remote_file || error "prepare remote file failed"
15238
15239         #open-unlink file
15240         $OPENUNLINK $remote_file $remote_file || error
15241         $CHECKSTAT -a $remote_file || error
15242 }
15243 run_test 310a "open unlink remote file"
15244
15245 test_310b() {
15246         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15248         local remote_file=$DIR/$tdir/tgt_dir/b
15249
15250         mkdir -p $DIR/$tdir
15251
15252         prepare_remote_file || error "prepare remote file failed"
15253
15254         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15255         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15256         $CHECKSTAT -t file $remote_file || error "check file failed"
15257 }
15258 run_test 310b "unlink remote file with multiple links while open"
15259
15260 test_310c() {
15261         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15263         local remote_file=$DIR/$tdir/tgt_dir/b
15264
15265         mkdir -p $DIR/$tdir
15266
15267         prepare_remote_file || error "prepare remote file failed"
15268
15269         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15270         multiop_bg_pause $remote_file O_uc ||
15271                         error "mulitop failed for remote file"
15272         MULTIPID=$!
15273         $MULTIOP $DIR/$tfile Ouc
15274         kill -USR1 $MULTIPID
15275         wait $MULTIPID
15276 }
15277 run_test 310c "open-unlink remote file with multiple links"
15278
15279 #LU-4825
15280 test_311() {
15281         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15282                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15283         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15284
15285         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15286
15287         mkdir -p $DIR/$tdir
15288         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15289         createmany -o $DIR/$tdir/$tfile. 1000
15290
15291         # statfs data is not real time, let's just calculate it
15292         old_iused=$((old_iused + 1000))
15293
15294         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15295                         osp.*OST0000*MDT0000.create_count")
15296         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15297                                 osp.*OST0000*MDT0000.max_create_count")
15298         for idx in $(seq $MDSCOUNT); do
15299                 do_facet mds$idx "lctl set_param -n \
15300                         osp.*OST0000*MDT000?.max_create_count=0"
15301         done
15302
15303         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15304         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15305         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15306
15307         unlinkmany $DIR/$tdir/$tfile. 1000
15308
15309         for idx in $(seq $MDSCOUNT); do
15310                 do_facet mds$idx "lctl set_param -n \
15311                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15312                 do_facet mds$idx "lctl set_param -n \
15313                         osp.*OST0000*MDT000?.create_count=$count"
15314         done
15315
15316         local new_iused
15317         for i in $(seq 120); do
15318                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15319                 [ $((old_iused - new_iused)) -gt 800 ] && break
15320                 sleep 1
15321         done
15322
15323         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15324         [ $((old_iused - new_iused)) -gt 800 ] ||
15325                 error "objs not destroyed after unlink"
15326 }
15327 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15328
15329 zfs_oid_to_objid()
15330 {
15331         local ost=$1
15332         local objid=$2
15333
15334         local vdevdir=$(dirname $(facet_vdevice $ost))
15335         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15336         local zfs_zapid=$(do_facet $ost $cmd |
15337                           grep -w "/O/0/d$((objid%32))" -C 5 |
15338                           awk '/Object/{getline; print $1}')
15339         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15340                           awk "/$objid = /"'{printf $3}')
15341
15342         echo $zfs_objid
15343 }
15344
15345 zfs_object_blksz() {
15346         local ost=$1
15347         local objid=$2
15348
15349         local vdevdir=$(dirname $(facet_vdevice $ost))
15350         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15351         local blksz=$(do_facet $ost $cmd $objid |
15352                       awk '/dblk/{getline; printf $4}')
15353
15354         case "${blksz: -1}" in
15355                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15356                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15357                 *) ;;
15358         esac
15359
15360         echo $blksz
15361 }
15362
15363 test_312() { # LU-4856
15364         [ $(facet_fstype ost1) = "zfs" ] ||
15365                 { skip "the test only applies to zfs" && return; }
15366
15367         local max_blksz=$(do_facet ost1 \
15368                           $ZFS get -p recordsize $(facet_device ost1) |
15369                           awk '!/VALUE/{print $3}')
15370
15371         # to make life a little bit easier
15372         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15373         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15374
15375         local tf=$DIR/$tdir/$tfile
15376         touch $tf
15377         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15378
15379         # Get ZFS object id
15380         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15381
15382         # block size change by sequential over write
15383         local blksz
15384         for ((bs=4096; bs <= max_blksz; bs <<= 2)); do
15385                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15386
15387                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15388                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15389         done
15390         rm -f $tf
15391
15392         # block size change by sequential append write
15393         dd if=/dev/zero of=$tf bs=4K count=1 oflag=sync conv=notrunc
15394         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15395         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15396
15397         for ((count = 1; count < $((max_blksz / 4096)); count *= 2)); do
15398                 dd if=/dev/zero of=$tf bs=4K count=$count seek=$count \
15399                         oflag=sync conv=notrunc
15400
15401                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15402                 blksz=$((blksz / 8192)) # in 2*4K unit
15403                 [ $blksz -eq $count ] ||
15404                         error "blksz error(in 8k): $blksz, expected: $count"
15405         done
15406         rm -f $tf
15407
15408         # random write
15409         touch $tf
15410         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15411         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15412
15413         dd if=/dev/zero of=$tf bs=8K count=1 oflag=sync conv=notrunc
15414         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15415         [ $blksz -eq 8192 ] || error "blksz error: $blksz, expected: 8k"
15416
15417         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15418         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15419         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15420
15421         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15422         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15423         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15424 }
15425 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15426
15427 test_313() {
15428         local file=$DIR/$tfile
15429         rm -f $file
15430         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15431
15432         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15433         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15434         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15435                 error "write should failed"
15436         do_facet ost1 "$LCTL set_param fail_loc=0"
15437         rm -f $file
15438 }
15439 run_test 313 "io should fail after last_rcvd update fail"
15440
15441 test_399() { # LU-7655 for OST fake write
15442         # turn off debug for performance testing
15443         local saved_debug=$($LCTL get_param -n debug)
15444         $LCTL set_param debug=0
15445
15446         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15447
15448         # get ost1 size - lustre-OST0000
15449         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15450         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15451         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15452
15453         local start_time=$(date +%s.%N)
15454         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$blocks oflag=sync ||
15455                 error "real dd writing error"
15456         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15457         rm -f $DIR/$tfile
15458
15459         # define OBD_FAIL_OST_FAKE_WRITE        0x238
15460         do_facet ost1 $LCTL set_param fail_loc=0x238
15461
15462         local start_time=$(date +%s.%N)
15463         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$blocks oflag=sync ||
15464                 error "fake dd writing error"
15465         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15466
15467         # verify file size
15468         cancel_lru_locks osc
15469         $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15470                 error "$tfile size not $blocks MB"
15471
15472         do_facet ost1 $LCTL set_param fail_loc=0
15473
15474         echo "fake write $duration_fake vs. normal write $duration in seconds"
15475         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15476                 error_not_in_vm "fake write is slower"
15477
15478         $LCTL set_param -n debug="$saved_debug"
15479         rm -f $DIR/$tfile
15480 }
15481 run_test 399 "fake write should not be slower than normal write"
15482
15483 test_400a() { # LU-1606, was conf-sanity test_74
15484         local extra_flags=''
15485         local out=$TMP/$tfile
15486         local prefix=/usr/include/lustre
15487         local prog
15488
15489         if ! which $CC > /dev/null 2>&1; then
15490                 skip_env "$CC is not installed"
15491                 return 0
15492         fi
15493
15494         if ! [[ -d $prefix ]]; then
15495                 # Assume we're running in tree and fixup the include path.
15496                 extra_flags+=" -I$LUSTRE/../libcfs/include"
15497                 extra_flags+=" -I$LUSTRE/include"
15498                 extra_flags+=" -L$LUSTRE/utils"
15499         fi
15500
15501         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
15502                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
15503                         error "client api broken"
15504         done
15505         rm -f $out
15506 }
15507 run_test 400a "Lustre client api program can compile and link"
15508
15509 test_400b() { # LU-1606, LU-5011
15510         local header
15511         local out=$TMP/$tfile
15512         local prefix=/usr/include/lustre
15513
15514         # We use a hard coded prefix so that this test will not fail
15515         # when run in tree. There are headers in lustre/include/lustre/
15516         # that are not packaged (like lustre_idl.h) and have more
15517         # complicated include dependencies (like config.h and lnet/types.h).
15518         # Since this test about correct packaging we just skip them when
15519         # they don't exist (see below) rather than try to fixup cppflags.
15520
15521         if ! which $CC > /dev/null 2>&1; then
15522                 skip_env "$CC is not installed"
15523                 return 0
15524         fi
15525
15526         for header in $prefix/*.h; do
15527                 if ! [[ -f "$header" ]]; then
15528                         continue
15529                 fi
15530
15531                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
15532                         continue # liblustreapi.h is deprecated.
15533                 fi
15534
15535                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
15536                         error "cannot compile '$header'"
15537         done
15538         rm -f $out
15539 }
15540 run_test 400b "packaged headers can be compiled"
15541
15542 test_401a() { #LU-7437
15543         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
15544         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
15545                 return
15546         #count the number of parameters by "list_param -R"
15547         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
15548         #count the number of parameters by listing proc files
15549         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
15550                       sort -u | wc -l)
15551
15552         [ $params -eq $procs ] ||
15553                 error "found $params parameters vs. $procs proc files"
15554
15555         # test the list_param -D option only returns directories
15556         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
15557         #count the number of parameters by listing proc directories
15558         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
15559                 sort -u | wc -l)
15560
15561         [ $params -eq $procs ] ||
15562                 error "found $params parameters vs. $procs proc files"
15563 }
15564 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
15565
15566 test_401b() {
15567         local save=$($LCTL get_param -n jobid_var)
15568         local tmp=testing
15569
15570         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
15571                 error "no error returned when setting bad parameters"
15572
15573         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
15574         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
15575
15576         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
15577         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
15578         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
15579 }
15580 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
15581
15582 test_401c() {
15583         local jobid_var_old=$($LCTL get_param -n jobid_var)
15584         local jobid_var_new
15585
15586         $LCTL set_param jobid_var= &&
15587                 error "no error returned for 'set_param a='"
15588
15589         jobid_var_new=$($LCTL get_param -n jobid_var)
15590         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15591                 error "jobid_var was changed by setting without value"
15592
15593         $LCTL set_param jobid_var &&
15594                 error "no error returned for 'set_param a'"
15595
15596         jobid_var_new=$($LCTL get_param -n jobid_var)
15597         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15598                 error "jobid_var was changed by setting without value"
15599 }
15600 run_test 401c "Verify 'lctl set_param' without value fails in either format."
15601
15602 test_401d() {
15603         local jobid_var_old=$($LCTL get_param -n jobid_var)
15604         local jobid_var_new
15605         local new_value="foo=bar"
15606
15607         $LCTL set_param jobid_var=$new_value ||
15608                 error "'set_param a=b' did not accept a value containing '='"
15609
15610         jobid_var_new=$($LCTL get_param -n jobid_var)
15611         [[ "$jobid_var_new" == "$new_value" ]] ||
15612                 error "'set_param a=b' failed on a value containing '='"
15613
15614         # Reset the jobid_var to test the other format
15615         $LCTL set_param jobid_var=$jobid_var_old
15616         jobid_var_new=$($LCTL get_param -n jobid_var)
15617         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
15618                 error "failed to reset jobid_var"
15619
15620         $LCTL set_param jobid_var $new_value ||
15621                 error "'set_param a b' did not accept a value containing '='"
15622
15623         jobid_var_new=$($LCTL get_param -n jobid_var)
15624         [[ "$jobid_var_new" == "$new_value" ]] ||
15625                 error "'set_param a b' failed on a value containing '='"
15626
15627         $LCTL set_param jobid_var $jobid_var_old
15628         jobid_var_new=$($LCTL get_param -n jobid_var)
15629         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
15630                 error "failed to reset jobid_var"
15631 }
15632 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
15633
15634 test_402() {
15635         local server_version=$(lustre_version_code $SINGLEMDS)
15636         [[ $server_version -ge $(version_code 2.7.66) ]] ||
15637         [[ $server_version -ge $(version_code 2.7.18.4) &&
15638                 $server_version -lt $(version_code 2.7.50) ]] ||
15639         [[ $server_version -ge $(version_code 2.7.2) &&
15640                 $server_version -lt $(version_code 2.7.11) ]] ||
15641                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
15642                         return; }
15643         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15644         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
15645 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
15646         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
15647         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
15648                 echo "Touch failed - OK"
15649 }
15650 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
15651
15652 test_403() {
15653         local file1=$DIR/$tfile.1
15654         local file2=$DIR/$tfile.2
15655         local tfile=$TMP/$tfile
15656
15657         rm -f $file1 $file2 $tfile
15658
15659         touch $file1
15660         ln $file1 $file2
15661
15662         # 30 sec OBD_TIMEOUT in ll_getattr()
15663         # right before populating st_nlink
15664         $LCTL set_param fail_loc=0x80001409
15665         stat -c %h $file1 > $tfile &
15666
15667         # create an alias, drop all locks and reclaim the dentry
15668         < $file2
15669         cancel_lru_locks mdc
15670         cancel_lru_locks osc
15671         sysctl -w vm.drop_caches=2
15672
15673         wait
15674
15675         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
15676
15677         rm -f $tfile $file1 $file2
15678 }
15679 run_test 403 "i_nlink should not drop to zero due to aliasing"
15680
15681 test_404() { # LU-6601
15682         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15683         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
15684                 awk '/osp .*-osc-MDT/ { print $4}')
15685
15686         local osp
15687         for osp in $mosps; do
15688                 echo "Deactivate: " $osp
15689                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
15690                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
15691                         awk -vp=$osp '$4 == p { print $2 }')
15692                 [ $stat = IN ] || {
15693                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
15694                         error "deactivate error"
15695                 }
15696                 echo "Activate: " $osp
15697                 do_facet $SINGLEMDS $LCTL --device %$osp activate
15698                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
15699                         awk -vp=$osp '$4 == p { print $2 }')
15700                 [ $stat = UP ] || {
15701                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
15702                         error "activate error"
15703                 }
15704         done
15705 }
15706 run_test 404 "validate manual {de}activated works properly for OSPs"
15707
15708 test_405() {
15709         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
15710                 skip "Layout swap lock is not supported" && return
15711
15712         check_swap_layouts_support && return 0
15713
15714         test_mkdir -p $DIR/$tdir
15715         swap_lock_test -d $DIR/$tdir ||
15716                 error "One layout swap locked test failed"
15717 }
15718 run_test 405 "Various layout swap lock tests"
15719
15720 test_406() {
15721         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15722         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
15723         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
15724         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15725         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
15726                 skip "Need MDS version at least 2.8.50" && return
15727
15728         local def_stripenr=$($GETSTRIPE -c $MOUNT)
15729         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
15730         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
15731         local def_pool=$($GETSTRIPE -p $MOUNT)
15732
15733         local test_pool=$TESTNAME
15734         pool_add $test_pool || error "pool_add failed"
15735         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
15736                 error "pool_add_targets failed"
15737
15738         # parent set default stripe count only, child will stripe from both
15739         # parent and fs default
15740         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
15741                 error "setstripe $MOUNT failed"
15742         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
15743         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
15744         for i in $(seq 10); do
15745                 local f=$DIR/$tdir/$tfile.$i
15746                 touch $f || error "touch failed"
15747                 local count=$($GETSTRIPE -c $f)
15748                 [ $count -eq $OSTCOUNT ] ||
15749                         error "$f stripe count $count != $OSTCOUNT"
15750                 local offset=$($GETSTRIPE -i $f)
15751                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
15752                 local size=$($GETSTRIPE -S $f)
15753                 [ $size -eq $((def_stripe_size * 2)) ] ||
15754                         error "$f stripe size $size != $((def_stripe_size * 2))"
15755                 local pool=$($GETSTRIPE -p $f)
15756                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
15757         done
15758
15759         # change fs default striping, delete parent default striping, now child
15760         # will stripe from new fs default striping only
15761         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
15762                 error "change $MOUNT default stripe failed"
15763         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
15764         for i in $(seq 11 20); do
15765                 local f=$DIR/$tdir/$tfile.$i
15766                 touch $f || error "touch $f failed"
15767                 local count=$($GETSTRIPE -c $f)
15768                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
15769                 local offset=$($GETSTRIPE -i $f)
15770                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
15771                 local size=$($GETSTRIPE -S $f)
15772                 [ $size -eq $def_stripe_size ] ||
15773                         error "$f stripe size $size != $def_stripe_size"
15774                 local pool=$($GETSTRIPE -p $f)
15775                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
15776
15777         done
15778
15779         unlinkmany $DIR/$tdir/$tfile. 1 20
15780
15781         # restore FS default striping
15782         if [ -z $def_pool ]; then
15783                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
15784                         -i $def_stripe_offset $MOUNT ||
15785                         error "restore default striping failed"
15786         else
15787                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
15788                         -i $def_stripe_offset $MOUNT ||
15789                         error "restore default striping with $def_pool failed"
15790         fi
15791
15792         local f=$DIR/$tdir/$tfile
15793         pool_remove_all_targets $test_pool $f
15794         pool_remove $test_pool $f
15795 }
15796 run_test 406 "DNE support fs default striping"
15797
15798 test_407() {
15799         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15800
15801         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15802                 skip "Need MDS version at least 2.8.55" && return
15803
15804         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
15805                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
15806         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
15807                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
15808         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
15809
15810         #define OBD_FAIL_DT_TXN_STOP    0x2019
15811         for idx in $(seq $MDSCOUNT); do
15812                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
15813         done
15814         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
15815         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
15816                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
15817         true
15818 }
15819 run_test 407 "transaction fail should cause operation fail"
15820
15821 test_408() {
15822         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
15823
15824         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
15825         lctl set_param fail_loc=0x8000040a
15826         # let ll_prepare_partial_page() fail
15827         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
15828
15829         rm -f $DIR/$tfile
15830
15831         # create at least 100 unused inodes so that
15832         # shrink_icache_memory(0) should not return 0
15833         touch $DIR/$tfile-{0..100}
15834         rm -f $DIR/$tfile-{0..100}
15835         sync
15836
15837         echo 2 > /proc/sys/vm/drop_caches
15838 }
15839 run_test 408 "drop_caches should not hang due to page leaks"
15840
15841 test_409()
15842 {
15843         [ $MDSCOUNT -lt 2 ] &&
15844                 skip "We need at least 2 MDTs for this test" && return
15845
15846         check_mount_and_prep
15847
15848         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
15849         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
15850         touch $DIR/$tdir/guard || error "(2) Fail to create"
15851
15852         local PREFIX=$(str_repeat 'A' 128)
15853         echo "Create 1K hard links start at $(date)"
15854         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
15855                 error "(3) Fail to hard link"
15856
15857         echo "Links count should be right although linkEA overflow"
15858         stat $DIR/$tdir/guard || error "(4) Fail to stat"
15859         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
15860         [ $linkcount -eq 1001 ] ||
15861                 error "(5) Unexpected hard links count: $linkcount"
15862
15863         echo "List all links start at $(date)"
15864         ls -l $DIR/$tdir/foo > /dev/null ||
15865                 error "(6) Fail to list $DIR/$tdir/foo"
15866
15867         echo "Unlink hard links start at $(date)"
15868         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
15869                 error "(7) Fail to unlink"
15870 }
15871 run_test 409 "Large amount of cross-MDTs hard links on the same file"
15872
15873 #
15874 # tests that do cleanup/setup should be run at the end
15875 #
15876
15877 test_900() {
15878         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15879         local ls
15880         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
15881         $LCTL set_param fail_loc=0x903
15882
15883         cancel_lru_locks MGC
15884
15885         FAIL_ON_ERROR=true cleanup
15886         FAIL_ON_ERROR=true setup
15887 }
15888 run_test 900 "umount should not race with any mgc requeue thread"
15889
15890 complete $SECONDS
15891 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
15892 check_and_cleanup_lustre
15893 if [ "$I_MOUNTED" != "yes" ]; then
15894         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
15895 fi
15896 exit_status